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": "714efe4d-42d3-41bd-ade7-21c400d64b87",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "4748cc5d-9d83-4b79-9d71-87c842feb6d7",
      "authorizable_type": "Dashboard",
      "grantee_id": "92",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-12-09T20:54:45.665-08:00",
      "created_at": "2025-12-09T20:54:45.585-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