DELETE
/
v1
/
catalog_entities
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f8d386e2-7847-4000-8ecc-d875c320c239",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "76c0bb20-978c-4885-abd9-a0833d23d01b",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2025-07-03T18:28:02.214-07:00",
      "updated_at": "2025-07-03T18:28:02.214-07:00",
      "created_at": "2025-07-03T18:27:59.192-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "76c0bb20-978c-4885-abd9-a0833d23d01b",
          "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
string
required

Response

200
application/vnd.api+json

catalog_entity deleted

The response is of type object.