Retrieves a specific cause by id
curl --request GET \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "5a89ff34-ec9c-46df-994b-d51feadc3080",
"type": "causes",
"attributes": {
"slug": "quas-qui-modi-consequatur",
"name": "Quas qui modi consequatur.",
"description": "Architecto quidem quis ex.",
"position": 1,
"created_at": "2025-08-21T23:41:30.422-07:00",
"updated_at": "2025-08-21T23:41:30.422-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
cause found by slug
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "5a89ff34-ec9c-46df-994b-d51feadc3080",
"type": "causes",
"attributes": {
"slug": "quas-qui-modi-consequatur",
"name": "Quas qui modi consequatur.",
"description": "Architecto quidem quis ex.",
"position": 1,
"created_at": "2025-08-21T23:41:30.422-07:00",
"updated_at": "2025-08-21T23:41:30.422-07:00"
}
}
}