Skip to content

Latest commit

 

History

History
78 lines (58 loc) · 1.65 KB

delete-snapshot-api.asciidoc

File metadata and controls

78 lines (58 loc) · 1.65 KB

Delete snapshot API

Delete snapshot

Deletes a snapshot.

DELETE /_snapshot/my_repository/my_snapshot

{api-request-title}

DELETE /_snapshot/<repository>/<snapshot>

{api-prereq-title}

  • If the {es} {security-features} are enabled, you must have the manage cluster privilege to use this API.

{api-path-parms-title}

<repository>

(Required, string) Name of the repository to delete a snapshot from.

<snapshot>

(Required, string) Comma-separated list of snapshot names to delete. Also accepts wildcards (*).

{api-example-title}

The following request deletes snapshot_2 and snapshot_3 from the repository named my_repository.

DELETE /_snapshot/my_repository/snapshot_2,snapshot_3

The API returns the following response:

{
  "acknowledged" : true
}