Retrieves a specific cause by id
curl --request GET \
--url https://api.rootly.com/v1/causes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "2948b497-1845-4891-af55-b56ae1c2611d",
"type": "causes",
"attributes": {
"slug": "iste-at-aut-rerum",
"name": "Iste at aut rerum.",
"description": "Amet aut et ut.",
"position": 1,
"created_at": "2025-08-01T21:45:20.666-07:00",
"updated_at": "2025-08-01T21:45:20.666-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
cause found
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": "2948b497-1845-4891-af55-b56ae1c2611d",
"type": "causes",
"attributes": {
"slug": "iste-at-aut-rerum",
"name": "Iste at aut rerum.",
"description": "Amet aut et ut.",
"position": 1,
"created_at": "2025-08-01T21:45:20.666-07:00",
"updated_at": "2025-08-01T21:45:20.666-07:00"
}
}
}