Skip to main content
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": "c39016c5-3a00-4e08-8572-b7da38f58a85",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "e3a645fa-0da0-4377-ae2d-b7c3f1d218df",
      "authorizable_type": "Dashboard",
      "grantee_id": "86",
      "grantee_type": "User",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-10-09T03:00:36.134-07:00",
      "created_at": "2025-10-09T03:00:36.002-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
data
object
required

Response

authorization updated

data
object
required
I