IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete snapshot API
editDelete snapshot API
editDeletes a snapshot.
DELETE /_snapshot/my_repository/my_snapshot
Request
editDELETE /_snapshot/<repository>/<snapshot>
Prerequisites
edit-
If the Elasticsearch security features are enabled, you must have the
manage
cluster privilege to use this API.
Path parameters
edit-
<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 (
*
).
Example
editThe 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 }