Delete all entities of a blueprint
DELETE/v1/blueprints/:blueprint_identifier/all-entities
This route allows you to delete all entities of a specific blueprint in your software catalog.
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 delete.
Query Parameters
run_id string
You can provide a run_id
to associate the deleted entities with a specific action run.
delete_blueprint boolean
If true
, this call will also delete the blueprint itself.
Responses
- 200
- 403
- 404
- 422
- 500
Entities deleted successfully
One of the following errors occurred:
Error | Description |
---|---|
missing_permissions | You do not have permissions to perform the requested operation. For further details, please contact your admin |
has_dependents | The entity has dependent entities that must be deleted along with it. To do that, use "delete_dependents=true" |
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...