Delete a specific cause by id
curl --request DELETE \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b48cc42a-93fa-44a6-a7e5-8479736cc7de",
"type": "causes",
"attributes": {
"slug": "inventore-itaque-nihil-voluptates",
"name": "Inventore itaque nihil voluptates.",
"description": "Commodi rem non iusto.",
"position": 1,
"created_at": "2025-09-03T02:18:51.257-07:00",
"updated_at": "2025-09-03T02:18:54.076-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
cause deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b48cc42a-93fa-44a6-a7e5-8479736cc7de",
"type": "causes",
"attributes": {
"slug": "inventore-itaque-nihil-voluptates",
"name": "Inventore itaque nihil voluptates.",
"description": "Commodi rem non iusto.",
"position": 1,
"created_at": "2025-09-03T02:18:51.257-07:00",
"updated_at": "2025-09-03T02:18:54.076-07:00"
}
}
}