Retrieves a specific authorization by id
curl --request GET \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b1ee4d2e-36a8-441e-a417-baec68586c7c",
"type": "authorizations",
"attributes": {
"authorizable_id": "87dad51d-7fd7-47bb-a63b-253ff5f5c947",
"authorizable_type": "Dashboard",
"grantee_id": "36",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-01T21:45:00.830-07:00",
"created_at": "2025-08-01T21:45:00.830-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
authorization found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b1ee4d2e-36a8-441e-a417-baec68586c7c",
"type": "authorizations",
"attributes": {
"authorizable_id": "87dad51d-7fd7-47bb-a63b-253ff5f5c947",
"authorizable_type": "Dashboard",
"grantee_id": "36",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-01T21:45:00.830-07:00",
"created_at": "2025-08-01T21:45:00.830-07:00"
}
}
}