Snapshots

Delete a snapshot (storage)

DEL
Deletes the specified snapshot of the entire storage.

Path parameters

snapshot_namestringRequired
Name of the full snapshot to delete

Query parameters

waitbooleanOptional
If true, wait for changes to actually happen. If false - let changes happen in background. Default is true.

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
booleanOptional
DEL
1curl -X DELETE http://localhost:6333/snapshots/snapshot_name \
2 -H "api-key: <apiKey>"
200Deleted
1{
2 "time": 1.1,
3 "status": "status",
4 "result": true
5}