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": "2187de15-9d6c-49cd-a7f4-0e4cbafa212e",
"type": "catalog_entities",
"attributes": {
"catalog_id": "93b2448d-835c-4b56-a793-9b64129760f9",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-07-24T00:05:58.611-07:00",
"updated_at": "2025-07-24T00:05:58.611-07:00",
"created_at": "2025-07-24T00:05:57.058-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "93b2448d-835c-4b56-a793-9b64129760f9",
"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": "2187de15-9d6c-49cd-a7f4-0e4cbafa212e",
"type": "catalog_entities",
"attributes": {
"catalog_id": "93b2448d-835c-4b56-a793-9b64129760f9",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-07-24T00:05:58.611-07:00",
"updated_at": "2025-07-24T00:05:58.611-07:00",
"created_at": "2025-07-24T00:05:57.058-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "93b2448d-835c-4b56-a793-9b64129760f9",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}