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": "c0afa4d8-8fb8-4601-9654-90b71c56beab",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-10-29T08:02:35.548-07:00",
"updated_at": "2025-10-29T08:02:35.548-07:00",
"created_at": "2025-10-29T08:02:34.457-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
"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": "c0afa4d8-8fb8-4601-9654-90b71c56beab",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": "2025-10-29T08:02:35.548-07:00",
"updated_at": "2025-10-29T08:02:35.548-07:00",
"created_at": "2025-10-29T08:02:34.457-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}