PUT
/
v1
/
authorizations
/
{id}
Update an authorization
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": "6528d082-8dda-4ecb-8685-aa038458aad6",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "beb9fc50-0c7b-4687-8b98-da7b4bd3414f",
      "authorizable_type": "Dashboard",
      "grantee_id": "40",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-07-11T12:22:16.583-07:00",
      "created_at": "2025-07-11T12:22:16.423-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

authorization updated

The response is of type object.