## Delete `gpu_droplets.volumes.snapshots.delete(strsnapshot_id)` **delete** `/v2/volumes/snapshots/{snapshot_id}` 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 - `snapshot_id: str` ### Example ```python from gradient import Gradient client = Gradient() client.gpu_droplets.volumes.snapshots.delete( "snapshot_id", ) ```