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": "9180b358-b2ee-43d2-8774-da3b86f95f80",
"type": "catalog_entities",
"attributes": {
"catalog_id": "8f00ee78-59bc-410b-ac47-31efb1fb8ed2",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-09-03T13:54:41.580-07:00",
"updated_at": "2025-09-03T13:54:41.580-07:00",
"created_at": "2025-09-03T13:54:39.822-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "8f00ee78-59bc-410b-ac47-31efb1fb8ed2",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
catalog_entity deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "9180b358-b2ee-43d2-8774-da3b86f95f80",
"type": "catalog_entities",
"attributes": {
"catalog_id": "8f00ee78-59bc-410b-ac47-31efb1fb8ed2",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-09-03T13:54:41.580-07:00",
"updated_at": "2025-09-03T13:54:41.580-07:00",
"created_at": "2025-09-03T13:54:39.822-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "8f00ee78-59bc-410b-ac47-31efb1fb8ed2",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}