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": "2ea72ac8-0448-4761-8cf7-ca82619e9d84",
"type": "catalog_entities",
"attributes": {
"catalog_id": "2cba3a1e-e3c5-4e1a-846e-1230d2712f13",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-08-14T03:37:16.516-07:00",
"updated_at": "2025-08-14T03:37:16.516-07:00",
"created_at": "2025-08-14T03:37:15.493-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "2cba3a1e-e3c5-4e1a-846e-1230d2712f13",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
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": "2ea72ac8-0448-4761-8cf7-ca82619e9d84",
"type": "catalog_entities",
"attributes": {
"catalog_id": "2cba3a1e-e3c5-4e1a-846e-1230d2712f13",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-08-14T03:37:16.516-07:00",
"updated_at": "2025-08-14T03:37:16.516-07:00",
"created_at": "2025-08-14T03:37:15.493-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "2cba3a1e-e3c5-4e1a-846e-1230d2712f13",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}