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": "57b06d81-4bde-427a-a16d-0994a500056f",
"type": "authorizations",
"attributes": {
"authorizable_id": "de3740c5-8af7-465d-85e7-96633a981e31",
"authorizable_type": "Dashboard",
"grantee_id": "92",
"grantee_type": "User",
"permissions": [
"read",
"update"
],
"updated_at": "2026-01-03T21:25:23.671-08:00",
"created_at": "2026-01-03T21:25:23.584-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": "57b06d81-4bde-427a-a16d-0994a500056f",
"type": "authorizations",
"attributes": {
"authorizable_id": "de3740c5-8af7-465d-85e7-96633a981e31",
"authorizable_type": "Dashboard",
"grantee_id": "92",
"grantee_type": "User",
"permissions": [
"read",
"update"
],
"updated_at": "2026-01-03T21:25:23.671-08:00",
"created_at": "2026-01-03T21:25:23.584-08:00"
}
}
}