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": "d620c971-19ac-4823-b5a9-687fda36a6c0",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "97e1af8f-0089-493c-9890-ea2050c96af5",
"catalog_field_id": "8c224b66-68d7-4d31-b8bc-379c42d2f233",
"key": "text",
"value": "Test",
"deleted_at": "2025-10-09T08:34:08.097-07:00",
"updated_at": "2025-10-09T08:34:08.097-07:00",
"created_at": "2025-10-09T08:34:07.099-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "97e1af8f-0089-493c-9890-ea2050c96af5",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "8c224b66-68d7-4d31-b8bc-379c42d2f233",
"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": "d620c971-19ac-4823-b5a9-687fda36a6c0",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "97e1af8f-0089-493c-9890-ea2050c96af5",
"catalog_field_id": "8c224b66-68d7-4d31-b8bc-379c42d2f233",
"key": "text",
"value": "Test",
"deleted_at": "2025-10-09T08:34:08.097-07:00",
"updated_at": "2025-10-09T08:34:08.097-07:00",
"created_at": "2025-10-09T08:34:07.099-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "97e1af8f-0089-493c-9890-ea2050c96af5",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "8c224b66-68d7-4d31-b8bc-379c42d2f233",
"type": "catalog_fields"
}
}
}
}
}