Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
authorization found
Retrieves a specific authorization by id
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "8ffbb9ee-fdf2-4c27-bf9e-e34686d6b750",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "932a9923-cd83-4295-8603-bf092d778b13",
      "authorizable_type": "Dashboard",
      "grantee_id": "86",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-10-30T19:48:05.628-07:00",
      "created_at": "2025-10-30T19:48:05.628-07:00"
    }
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
authorization found
Show child attributes
Was this page helpful?
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "8ffbb9ee-fdf2-4c27-bf9e-e34686d6b750",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "932a9923-cd83-4295-8603-bf092d778b13",
      "authorizable_type": "Dashboard",
      "grantee_id": "86",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-10-30T19:48:05.628-07:00",
      "created_at": "2025-10-30T19:48:05.628-07:00"
    }
  }
}