DELETE
/
v1
/
authorizations
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3a0b7dd9-f1cc-4252-9396-baee1fdb6ef5",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "8cc82847-0f88-4a65-9128-34023e28eea2",
      "authorizable_type": "Dashboard",
      "grantee_id": "44",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-07-09T09:05:51.831-07:00",
      "created_at": "2025-07-09T09:05:51.831-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

Response

200
application/vnd.api+json

authorization deleted

The response is of type object.