Skip to main content
GET
/
v1
/
authorizations
/
{id}
Retrieves an authorization
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8dec38c2-b23f-43b6-ac78-412cc912e9b5",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "6da3542e-4852-4471-b764-341c3f61dc68",
      "authorizable_type": "Dashboard",
      "grantee_id": "88",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-11-27T00:06:08.606-08:00",
      "created_at": "2025-11-27T00:06:08.606-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

authorization found

data
object
required