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": "78a0e1e5-b95d-4f71-bdbf-2b4d946c37b1",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "7f445739-428a-41bd-a753-bb0aaf9fad40",
      "authorizable_type": "Dashboard",
      "grantee_id": "112",
      "grantee_type": "User",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2026-01-21T21:45:13.570-08:00",
      "created_at": "2026-01-21T21:45:13.489-08: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