Delete Timelines or Timeline templates Beta

DELETE /api/timeline

Delete one or more Timelines or Timeline templates.

application/json; Elastic-Api-Version=2023-10-31

Body Required

The IDs of the Timelines or Timeline templates to delete.

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    Indicates the Timeline was successfully deleted.

    Hide response attribute Show response attribute object
    • data object Required

      Additional properties are allowed.

      Hide data attribute Show data attribute object
DELETE /api/timeline
curl \
 -X DELETE https://localhost:5601/api/timeline \
 -H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
  "savedObjectIds": [
    "string"
  ],
  "searchIds": [
    "string"
  ]
}
Response examples (200)
{
  "data": {
    "deleteTimeline": true
  }
}