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": "0e704547-6a5e-4399-adce-1908a67cf29e",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "edde3a64-ac2a-4a3d-8ab9-2bdcefec6512",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2026-02-17T18:08:00.237-08:00",
      "updated_at": "2026-02-17T18:08:00.237-08:00",
      "created_at": "2026-02-17T18:07:59.174-08:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "edde3a64-ac2a-4a3d-8ab9-2bdcefec6512",
          "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