Skip to main content
DELETE
/
v1
/
catalog_entities
/
{id}
Delete a Catalog Entity
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "c0afa4d8-8fb8-4601-9654-90b71c56beab",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2025-10-29T08:02:35.548-07:00",
      "updated_at": "2025-10-29T08:02:35.548-07:00",
      "created_at": "2025-10-29T08:02:34.457-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "3f16ad23-9bb2-49bb-8b0f-8b655a4d255b",
          "type": "catalogs"
        }
      },
      "properties": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Response

catalog_entity deleted

data
object
required