Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
authorization updated
Update a specific authorization by id
curl --request PUT \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "authorizations",
"attributes": {
"permissions": [
"read"
]
}
}
}'{
"data": {
"id": "7444e6a9-b640-4685-acda-4a70a769e0d9",
"type": "authorizations",
"attributes": {
"authorizable_id": "a80e3d86-e589-48f7-8dba-a0553fbf1802",
"authorizable_type": "Dashboard",
"grantee_id": "90",
"grantee_type": "Team",
"permissions": [
"read",
"update"
],
"updated_at": "2025-11-05T11:27:46.828-08:00",
"created_at": "2025-11-05T11:27:46.701-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
authorization updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "authorizations",
"attributes": {
"permissions": [
"read"
]
}
}
}'{
"data": {
"id": "7444e6a9-b640-4685-acda-4a70a769e0d9",
"type": "authorizations",
"attributes": {
"authorizable_id": "a80e3d86-e589-48f7-8dba-a0553fbf1802",
"authorizable_type": "Dashboard",
"grantee_id": "90",
"grantee_type": "Team",
"permissions": [
"read",
"update"
],
"updated_at": "2025-11-05T11:27:46.828-08:00",
"created_at": "2025-11-05T11:27:46.701-08:00"
}
}
}