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": "7dbdf018-f269-4fba-9af8-af8d7c124dcc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "f027a952-a433-4371-9e32-3b7fdf7957c2",
"catalog_field_id": "08158af8-da44-4d40-ac63-d3adef4eb2a3",
"key": "text",
"value": "Test",
"deleted_at": "2025-08-08T09:10:36.834-07:00",
"updated_at": "2025-08-08T09:10:36.834-07:00",
"created_at": "2025-08-08T09:10:36.010-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "f027a952-a433-4371-9e32-3b7fdf7957c2",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "08158af8-da44-4d40-ac63-d3adef4eb2a3",
"type": "catalog_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog_entity_property deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7dbdf018-f269-4fba-9af8-af8d7c124dcc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "f027a952-a433-4371-9e32-3b7fdf7957c2",
"catalog_field_id": "08158af8-da44-4d40-ac63-d3adef4eb2a3",
"key": "text",
"value": "Test",
"deleted_at": "2025-08-08T09:10:36.834-07:00",
"updated_at": "2025-08-08T09:10:36.834-07:00",
"created_at": "2025-08-08T09:10:36.010-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "f027a952-a433-4371-9e32-3b7fdf7957c2",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "08158af8-da44-4d40-ac63-d3adef4eb2a3",
"type": "catalog_fields"
}
}
}
}
}