Delete Timelines or Timeline templates

DELETE /api/timeline

Delete one or more Timelines or Timeline templates.

application/json

Body Required

The IDs of the Timelines or Timeline templates to delete.

Responses

  • Indicates the Timeline was successfully deleted.

DELETE /api/timeline
curl \
 --request DELETE https://localhost:5601/api/timeline \
 --header "Content-Type: application/json" \
 --data '{"savedObjectIds":["string"],"searchIds":["string"]}'
Request examples
{
  "savedObjectIds": [
    "string"
  ],
  "searchIds": [
    "string"
  ]
}