DELETE
/
v1
/
catalog_entity_properties
/
{id}
Delete a Catalog Entity Property
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_entity_properties/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ab2982e2-ddb7-4942-9e96-5d3fd01f1a13",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "d2b83cf1-220f-46ad-b472-1584f8794bd1",
      "catalog_field_id": "17dd4c48-4f50-4b2c-b759-fd4e99e520d0",
      "key": "text",
      "value": "Test",
      "deleted_at": "2025-08-28T13:59:21.944-07:00",
      "updated_at": "2025-08-28T13:59:21.944-07:00",
      "created_at": "2025-08-28T13:59:20.987-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "d2b83cf1-220f-46ad-b472-1584f8794bd1",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "17dd4c48-4f50-4b2c-b759-fd4e99e520d0",
          "type": "catalog_fields"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

catalog_entity_property deleted

The response is of type object.