Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
catalog_entity_property deleted
Delete a specific Catalog Entity Property by id
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "95654730-1fb8-4eb5-b50e-6602f4a27355",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "6611340f-62de-4748-91c1-7c1a9ef52b52",
"catalog_field_id": "1f2202c0-23b4-4a19-820a-dbf345995f2b",
"key": "text",
"value": "Test",
"deleted_at": "2025-10-29T14:41:48.065-07:00",
"updated_at": "2025-10-29T14:41:48.065-07:00",
"created_at": "2025-10-29T14:41:47.043-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "6611340f-62de-4748-91c1-7c1a9ef52b52",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "1f2202c0-23b4-4a19-820a-dbf345995f2b",
"type": "catalog_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
catalog_entity_property deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "95654730-1fb8-4eb5-b50e-6602f4a27355",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "6611340f-62de-4748-91c1-7c1a9ef52b52",
"catalog_field_id": "1f2202c0-23b4-4a19-820a-dbf345995f2b",
"key": "text",
"value": "Test",
"deleted_at": "2025-10-29T14:41:48.065-07:00",
"updated_at": "2025-10-29T14:41:48.065-07:00",
"created_at": "2025-10-29T14:41:47.043-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "6611340f-62de-4748-91c1-7c1a9ef52b52",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "1f2202c0-23b4-4a19-820a-dbf345995f2b",
"type": "catalog_fields"
}
}
}
}
}