DELETE
/
v1
/
catalog_entities
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d0c1fbfb-156f-4a00-92d7-831f423654c4",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "2f4b9b40-34f0-4d9e-a9c9-b8eb31fde967",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": "2025-05-08T00:16:56.528-07:00",
      "updated_at": "2025-05-08T00:16:56.528-07:00",
      "created_at": "2025-05-08T00:16:54.320-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "2f4b9b40-34f0-4d9e-a9c9-b8eb31fde967",
          "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.