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": "ea719b2d-7a3b-4564-a100-52b4035b40d5",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "2020f2d8-4a40-497b-aa2c-0657916221c0",
      "catalog_field_id": "5a48009b-721c-4423-81be-b89925b7852b",
      "key": "text",
      "value": "Test",
      "deleted_at": "2025-07-17T11:00:03.808-07:00",
      "updated_at": "2025-07-17T11:00:03.808-07:00",
      "created_at": "2025-07-17T11:00:01.719-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "2020f2d8-4a40-497b-aa2c-0657916221c0",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "5a48009b-721c-4423-81be-b89925b7852b",
          "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.