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": "fdcd407f-40f2-4d2b-81ab-4fcbd01b609b",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "3cdb366c-c53b-421e-9008-9138ad7c39fb",
      "authorizable_type": "Dashboard",
      "grantee_id": "45",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-10-08T19:30:59.391-07:00",
      "created_at": "2025-10-08T19:30:59.391-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

data
object
required
I