DELETE
/
v1
/
authorizations
/
{id}
Delete an authorization
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "05e94508-b4bb-4c0a-af6f-0c3c84105642",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "48df554d-5801-45f7-a4d8-357b7a3954b8",
      "authorizable_type": "Dashboard",
      "grantee_id": "51",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-09-10T22:58:47.696-07:00",
      "created_at": "2025-09-10T22:58:47.696-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

authorization deleted

The response is of type object.