Retrieves a specific authorization by id
curl --request GET \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8f2bf709-b886-49b6-a5e7-9553a73f8a83",
"type": "authorizations",
"attributes": {
"authorizable_id": "a111ed84-5ad0-4c7b-8e60-33a035ffeb6a",
"authorizable_type": "Dashboard",
"grantee_id": "37",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-21T23:41:14.646-07:00",
"created_at": "2025-08-21T23:41:14.646-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": "8f2bf709-b886-49b6-a5e7-9553a73f8a83",
"type": "authorizations",
"attributes": {
"authorizable_id": "a111ed84-5ad0-4c7b-8e60-33a035ffeb6a",
"authorizable_type": "Dashboard",
"grantee_id": "37",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-21T23:41:14.646-07:00",
"created_at": "2025-08-21T23:41:14.646-07:00"
}
}
}