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": "abb1e2e8-cc07-4c06-8e42-33f2a72048c9",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "27d03732-8326-4b6c-96ff-269b6b4b983c",
      "catalog_field_id": "90e79f52-de3f-429c-b50c-6938733e65bc",
      "key": "text",
      "value": "Test",
      "deleted_at": "2025-03-20T17:47:54.878-07:00",
      "updated_at": "2025-03-20T17:47:54.878-07:00",
      "created_at": "2025-03-20T17:47:53.061-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "27d03732-8326-4b6c-96ff-269b6b4b983c",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "90e79f52-de3f-429c-b50c-6938733e65bc",
          "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
data
object
required

Was this page helpful?