Delete a specific cause by id
curl --request DELETE \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8286c7a8-79ff-4bae-9369-942a12cdf09c",
"type": "causes",
"attributes": {
"slug": "ut-soluta-quia-aut",
"name": "Ut soluta quia aut.",
"description": "Voluptate numquam aliquid adipisci.",
"position": 1,
"created_at": "2025-08-12T06:49:56.421-07:00",
"updated_at": "2025-08-12T06:49:59.831-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
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": "8286c7a8-79ff-4bae-9369-942a12cdf09c",
"type": "causes",
"attributes": {
"slug": "ut-soluta-quia-aut",
"name": "Ut soluta quia aut.",
"description": "Voluptate numquam aliquid adipisci.",
"position": 1,
"created_at": "2025-08-12T06:49:56.421-07:00",
"updated_at": "2025-08-12T06:49:59.831-07:00"
}
}
}