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": "3eb11fdc-3f5c-41a4-80ba-0150de1a1765",
"type": "authorizations",
"attributes": {
"authorizable_id": "b90f42b6-d80e-4724-820b-b7842111ce79",
"authorizable_type": "Dashboard",
"grantee_id": "88",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-25T08:51:45.899-08:00",
"created_at": "2025-11-25T08:51:45.899-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": "3eb11fdc-3f5c-41a4-80ba-0150de1a1765",
"type": "authorizations",
"attributes": {
"authorizable_id": "b90f42b6-d80e-4724-820b-b7842111ce79",
"authorizable_type": "Dashboard",
"grantee_id": "88",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-25T08:51:45.899-08:00",
"created_at": "2025-11-25T08:51:45.899-08:00"
}
}
}