DELETE
/
v1
/
catalogs
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/catalogs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d928fb63-fcf9-406a-b47c-dad1cd151091",
    "type": "catalogs",
    "attributes": {
      "name": "Services",
      "slug": "services",
      "icon": "globe-alt",
      "description": null,
      "position": 1,
      "deleted_at": "2025-03-19T07:48:38.945-07:00",
      "updated_at": "2025-03-19T07:48:38.945-07:00",
      "created_at": "2025-03-19T07:48:37.110-07:00"
    },
    "relationships": {
      "fields": {
        "data": []
      },
      "entities": {
        "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 deleted
data
object
required

Was this page helpful?