DELETE
/
v1
/
authorizations
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "de3850da-c6b0-452c-92e4-8c924b8353ca",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "c98fc50d-7673-4f66-a8ec-de0a6cb346a8",
      "authorizable_type": "Dashboard",
      "grantee_id": "45",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-05-29T17:40:48.787-07:00",
      "created_at": "2025-05-29T17:40:48.787-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.