GET
/
v1
/
authorizations
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ff0a4719-c7a0-4ce3-8f7b-06d44e9aa483",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "c7010b36-6b49-4576-b52d-853d61787ad6",
      "authorizable_type": "Dashboard",
      "grantee_id": "37",
      "grantee_type": "User",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-05-08T00:16:44.975-07:00",
      "created_at": "2025-05-08T00:16:44.975-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.