Get all entities of a blueprint
GET/v1/blueprints/:blueprint_identifier/entities
This route allows you to fetch all entities in your software catalog based on a given blueprint.
To learn more about entities, check out the documentation.
Request
Path Parameters
blueprint_identifier stringrequired
Possible values: non-empty
The identifier of the blueprint whose entities you want to fetch.
Query Parameters
exclude_calculated_properties boolean
If true
, calculated properties will be excluded from the entities.
include string[]
An array of values from the entity JSON. Only these values will be returned in the response.
For example: { "properties.propertyIdentifier","identifier"}
exclude string[]
An array of values from the entity JSON to be ommitted from the response.
For example: { "properties.propertyIdentifier","identifier"}
Responses
- 200
- 404
- 422
- 500
Success
One of the following errors occurred:
Error | Description |
---|---|
not_found | A blueprint with the provided identifier was not found |
One of the following errors occurred:
Error | Description |
---|---|
invalid_request | The provided data does not match the route schema |
One of the following errors occurred:
Error | Description |
---|---|
internal_error | An internal error occurred |
Loading...