DELETE
/
v1
/
catalog_entity_properties
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_entity_properties/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ee670e59-a024-4bc8-ac67-626e2b5ea72b",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "10625c5c-f11c-4202-9fe3-e45723c47155",
      "catalog_field_id": "75d8b033-9819-460c-a132-4b45a89909e1",
      "key": "text",
      "value": "Test",
      "deleted_at": "2025-05-08T00:17:00.107-07:00",
      "updated_at": "2025-05-08T00:17:00.107-07:00",
      "created_at": "2025-05-08T00:16:58.050-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "10625c5c-f11c-4202-9fe3-e45723c47155",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "75d8b033-9819-460c-a132-4b45a89909e1",
          "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.