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": "9c47158c-880c-4242-9091-038ab301e357",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "b25ec94c-3ae1-49cb-9ce0-1396ed555797",
      "authorizable_type": "Dashboard",
      "grantee_id": "50",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update"
      ],
      "updated_at": "2025-03-22T22:58:13.286-07:00",
      "created_at": "2025-03-22T22:58:13.110-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