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": "c3e37270-e88f-430e-b21e-b9f2fa27bb3e",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "026de78a-a1ed-4acb-8465-dbff41e5ad66",
"catalog_field_id": "04e67b66-29f0-4d41-aa59-a97520e529ca",
"key": "text",
"value": "Test",
"deleted_at": "2025-07-06T14:06:13.256-07:00",
"updated_at": "2025-07-06T14:06:13.256-07:00",
"created_at": "2025-07-06T14:06:11.234-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "026de78a-a1ed-4acb-8465-dbff41e5ad66",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "04e67b66-29f0-4d41-aa59-a97520e529ca",
"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": "c3e37270-e88f-430e-b21e-b9f2fa27bb3e",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "026de78a-a1ed-4acb-8465-dbff41e5ad66",
"catalog_field_id": "04e67b66-29f0-4d41-aa59-a97520e529ca",
"key": "text",
"value": "Test",
"deleted_at": "2025-07-06T14:06:13.256-07:00",
"updated_at": "2025-07-06T14:06:13.256-07:00",
"created_at": "2025-07-06T14:06:11.234-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "026de78a-a1ed-4acb-8465-dbff41e5ad66",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "04e67b66-29f0-4d41-aa59-a97520e529ca",
"type": "catalog_fields"
}
}
}
}
}