DELETE
/
v1
/
incident_permission_sets
/
{id}
Delete an incident_permission_set
curl --request DELETE \
  --url https://api.rootly.com/v1/incident_permission_sets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "64330ebc-6490-426d-8820-5caeff70a2a4",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 242,
      "name": "Expedita distinctio placeat quia.",
      "slug": "expedita-distinctio-placeat-quia",
      "description": "Tempore laborum autem ex.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-09-13T11:58:55.397-07:00",
      "created_at": "2025-09-13T11:58:55.226-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Response

incident_permission_set deleted

The response is of type object.