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": "ceba7857-c82f-4fab-81d8-4dc49895247a",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "775ec981-b1a4-44dd-89df-bded23af0add",
      "authorizable_type": "Dashboard",
      "grantee_id": "41",
      "grantee_type": "User",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-04-18T09:45:10.340-07:00",
      "created_at": "2025-04-18T09:45:10.166-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

200
application/vnd.api+json
authorization updated
data
object
required