DELETE
/
v1
/
playbooks
/
{id}
Delete a playbook
curl --request DELETE \
  --url https://api.rootly.com/v1/playbooks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "327f69bc-f079-43fe-bb26-8399a30f1bb8",
    "type": "playbooks",
    "attributes": {
      "title": "Hic repudiandae voluptatem non.",
      "summary": null,
      "external_url": null,
      "severity_ids": [],
      "environment_ids": [],
      "service_ids": [],
      "functionality_ids": [],
      "group_ids": [],
      "incident_type_ids": [],
      "cause_ids": [],
      "created_at": "2025-09-10T23:03:33.969-07:00",
      "updated_at": "2025-09-10T23:03:39.852-07:00"
    },
    "relationships": {
      "severities": {
        "data": []
      },
      "environments": {
        "data": []
      },
      "services": {
        "data": []
      },
      "functionalities": {
        "data": []
      },
      "groups": {
        "data": []
      },
      "causes": {
        "data": []
      },
      "incident_types": {
        "data": []
      }
    }
  }
}

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

playbook deleted

The response is of type object.