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": "f5e7e229-058e-4808-baea-055a9349408f",
"type": "authorizations",
"attributes": {
"authorizable_id": "2f71d3d7-0865-4e60-9a86-1ab134171638",
"authorizable_type": "Dashboard",
"grantee_id": "43",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-18T06:40:23.503-07:00",
"created_at": "2025-09-18T06:40:23.503-07: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": "f5e7e229-058e-4808-baea-055a9349408f",
"type": "authorizations",
"attributes": {
"authorizable_id": "2f71d3d7-0865-4e60-9a86-1ab134171638",
"authorizable_type": "Dashboard",
"grantee_id": "43",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-18T06:40:23.503-07:00",
"created_at": "2025-09-18T06:40:23.503-07:00"
}
}
}