DELETE
/
v1
/
authorizations
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f42d2bc1-d8ea-463a-8f66-eb6b0a434397",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "bc98a02d-d587-4235-8c0a-0a399963ac64",
      "authorizable_type": "Dashboard",
      "grantee_id": "47",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-06-19T02:37:44.289-07:00",
      "created_at": "2025-06-19T02:37:44.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.