pydo.volume_snapshots.delete_by_id()
Generated on 10 Mar 2026
from pydo version
v0.28.0
Description
To delete a volume snapshot, send a DELETE request to
/v2/volumes/snapshots/$VOLUME_SNAPSHOT_ID.
A status of 204 will be given. This indicates that the request was processed successfully, but that no response body is needed.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
snapshot_id |
string | True | The unique identifier for the snapshot. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
req = {
"name": "big-data-snapshot1475261774"
}
resp = client.volume_snapshots.delete_by_id(snapshot_id="da3aa3a")More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.