DELETE
/
v1
/
authorizations
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/authorizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "7b93f010-1f56-48dd-9001-0f2e1e5ddede",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "468d3974-fc0b-465e-a12e-95f136a9ad1b",
      "authorizable_type": "Dashboard",
      "grantee_id": "45",
      "grantee_type": "Team",
      "permissions": [
        "read",
        "update",
        "authorize",
        "destroy"
      ],
      "updated_at": "2025-05-08T00:16:51.076-07:00",
      "created_at": "2025-05-08T00:16:51.076-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.