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": "8dec38c2-b23f-43b6-ac78-412cc912e9b5",
"type": "authorizations",
"attributes": {
"authorizable_id": "6da3542e-4852-4471-b764-341c3f61dc68",
"authorizable_type": "Dashboard",
"grantee_id": "88",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-27T00:06:08.606-08:00",
"created_at": "2025-11-27T00:06:08.606-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": "8dec38c2-b23f-43b6-ac78-412cc912e9b5",
"type": "authorizations",
"attributes": {
"authorizable_id": "6da3542e-4852-4471-b764-341c3f61dc68",
"authorizable_type": "Dashboard",
"grantee_id": "88",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-11-27T00:06:08.606-08:00",
"created_at": "2025-11-27T00:06:08.606-08:00"
}
}
}