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": "da1214f9-3625-47ae-87f0-e194565573b9",
"type": "authorizations",
"attributes": {
"authorizable_id": "0759650e-eb2d-4268-966a-0ecbccb3f6dc",
"authorizable_type": "Dashboard",
"grantee_id": "86",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-06T13:19:38.394-08:00",
"created_at": "2025-11-06T13:19:38.394-08: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": "da1214f9-3625-47ae-87f0-e194565573b9",
"type": "authorizations",
"attributes": {
"authorizable_id": "0759650e-eb2d-4268-966a-0ecbccb3f6dc",
"authorizable_type": "Dashboard",
"grantee_id": "86",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-06T13:19:38.394-08:00",
"created_at": "2025-11-06T13:19:38.394-08:00"
}
}
}