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": "3e8023f8-e174-405f-94d1-772a1e5498e0",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "7ba086ee-6f5e-4d78-aabc-08da0156fc65",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2026-01-28T15:50:56.522-08:00",
      "updated_at": "2026-01-28T15:50:56.522-08:00",
      "created_at": "2026-01-28T15:50:55.386-08:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "7ba086ee-6f5e-4d78-aabc-08da0156fc65",
          "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