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": "db720e27-8b55-457c-b88f-f6254234d79f",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "b725a0eb-0680-4777-b648-04f33bbb2f15",
      "authorizable_type": "Dashboard",
      "grantee_id": "47",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-09-18T09:15:49.018-07:00",
      "created_at": "2025-09-18T09:15:48.874-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