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": "1e7ef3f1-685c-4036-af24-53fdd5ebcec7",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "d6f97c6d-e185-4c90-8eed-0c3bf5f1dd10",
      "authorizable_type": "Dashboard",
      "grantee_id": "41",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-05-08T00:16:48.144-07:00",
      "created_at": "2025-05-08T00:16:47.756-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.