GET
/
v1
/
authorizations
/
{id}
Retrieves an authorization
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8f2bf709-b886-49b6-a5e7-9553a73f8a83",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "a111ed84-5ad0-4c7b-8e60-33a035ffeb6a",
      "authorizable_type": "Dashboard",
      "grantee_id": "37",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-08-21T23:41:14.646-07:00",
      "created_at": "2025-08-21T23:41:14.646-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

200
application/vnd.api+json

authorization found

The response is of type object.