DELETE
/
v1
/
authorizations
/
{id}
Delete an authorization
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "eb3d37bf-37ad-4ca7-8fa0-7136ff10ef54",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "96425e68-de44-48ac-9d2d-1cd2abb5189d",
      "authorizable_type": "Dashboard",
      "grantee_id": "48",
      "grantee_type": "User",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-08-01T09:44:58.289-07:00",
      "created_at": "2025-08-01T09:44:58.289-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.