Delete a specific catalog by id
curl --request DELETE \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "47c86d97-fbd4-4174-a5db-a34593d30da2",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": "2025-07-30T02:53:59.471-07:00",
"updated_at": "2025-07-30T02:53:59.471-07:00",
"created_at": "2025-07-30T02:53:57.911-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "47c86d97-fbd4-4174-a5db-a34593d30da2",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": "2025-07-30T02:53:59.471-07:00",
"updated_at": "2025-07-30T02:53:59.471-07:00",
"created_at": "2025-07-30T02:53:57.911-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}