GET
/
v1
/
causes
/
{id}
Retrieves a cause
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"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Response

200
application/vnd.api+json

cause found by slug

The response is of type object.