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": "8ea5f41b-28d8-4069-afd1-060dd534e119",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "5e19bf23-bca2-4d05-bd68-fa06d46f67d8",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2025-12-18T10:00:43.151-08:00",
      "updated_at": "2025-12-18T10:00:43.151-08:00",
      "created_at": "2025-12-18T10:00:42.217-08:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "5e19bf23-bca2-4d05-bd68-fa06d46f67d8",
          "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