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": "64742087-7d1e-42b3-95ef-395bad68744a",
"type": "authorizations",
"attributes": {
"authorizable_id": "b25af74d-804b-4fff-8848-3a6ff2a91d0c",
"authorizable_type": "Dashboard",
"grantee_id": "117",
"grantee_type": "Team",
"permissions": [
"read",
"update"
],
"updated_at": "2026-01-14T20:17:35.504-08:00",
"created_at": "2026-01-14T20:17:35.424-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": "64742087-7d1e-42b3-95ef-395bad68744a",
"type": "authorizations",
"attributes": {
"authorizable_id": "b25af74d-804b-4fff-8848-3a6ff2a91d0c",
"authorizable_type": "Dashboard",
"grantee_id": "117",
"grantee_type": "Team",
"permissions": [
"read",
"update"
],
"updated_at": "2026-01-14T20:17:35.504-08:00",
"created_at": "2026-01-14T20:17:35.424-08:00"
}
}
}