Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Response
catalog_entity deleted
Delete a specific Catalog Entity by id
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e3f5ea87-017d-4169-b335-66dde85fe258",
"type": "catalog_entities",
"attributes": {
"catalog_id": "ca992145-94e8-4cb0-b7fa-a5a01fc29d10",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-09-18T09:15:56.160-07:00",
"updated_at": "2025-09-18T09:15:56.160-07:00",
"created_at": "2025-09-18T09:15:55.001-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "ca992145-94e8-4cb0-b7fa-a5a01fc29d10",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
catalog_entity deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e3f5ea87-017d-4169-b335-66dde85fe258",
"type": "catalog_entities",
"attributes": {
"catalog_id": "ca992145-94e8-4cb0-b7fa-a5a01fc29d10",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-09-18T09:15:56.160-07:00",
"updated_at": "2025-09-18T09:15:56.160-07:00",
"created_at": "2025-09-18T09:15:55.001-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "ca992145-94e8-4cb0-b7fa-a5a01fc29d10",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}