Retrieves a specific authorization by id
curl --request GET \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ff707d27-f513-4233-a6d1-093acc82795f",
"type": "authorizations",
"attributes": {
"authorizable_id": "1f05e236-3ffb-42dc-8c78-5eeb31bd5ddb",
"authorizable_type": "Dashboard",
"grantee_id": "43",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-11T13:24:50.099-07:00",
"created_at": "2025-09-11T13:24:50.099-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": "ff707d27-f513-4233-a6d1-093acc82795f",
"type": "authorizations",
"attributes": {
"authorizable_id": "1f05e236-3ffb-42dc-8c78-5eeb31bd5ddb",
"authorizable_type": "Dashboard",
"grantee_id": "43",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-11T13:24:50.099-07:00",
"created_at": "2025-09-11T13:24:50.099-07:00"
}
}
}