PUT
/
v1
/
authorizations
/
{id}
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": "bd653873-fe1e-4ff2-84d5-8824035b1453",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "505e1e30-2664-499a-8186-c0248cff4d10",
      "authorizable_type": "Dashboard",
      "grantee_id": "43",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-06-19T02:37:42.612-07:00",
      "created_at": "2025-06-19T02:37:42.467-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.