GET
/
v1
/
authorizations
/
{id}
Retrieves an authorization
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ff707d27-f513-4233-a6d1-093acc82795f",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "1f05e236-3ffb-42dc-8c78-5eeb31bd5ddb",
      "authorizable_type": "Dashboard",
      "grantee_id": "43",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-09-11T13:24:50.099-07:00",
      "created_at": "2025-09-11T13:24:50.099-07: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

The response is of type object.