How to Delete a Network File Storage Snapshot
Validated on 12 Mar 2026 • Last edited on 12 Mar 2026
Network File Storage is a fully managed, POSIX-compliant file storage solution built for demanding workloads like AI/ML pipelines, containerized applications, and DigitalOcean Kubernetes (DOKS) clusters. It provides scalable, high-throughput shared storage that simplifies storage management for distributed applications.
Deleting a snapshot permanently removes it. You cannot recover a deleted snapshot.
Delete a Snapshot Using the Control Panel
To delete a snapshot from the Control Panel, click Network File Storage in the main menu, then click the Snapshots tab.
Click the share name to show the snapshot list for that share. Click the … “more” menu next to the snapshot you want to delete, then click Delete Snapshot.
In the confirmation window, enter the snapshot name to confirm, then click Delete.
Delete a Snapshot Using the CLI
Delete a Snapshot Using the API
To delete a snapshot via the API, send a DELETE request to the NFS snapshot endpoint:
curl -X DELETE \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
"https://api.digitalocean.com/v2/nfs/snapshots/<snapshot_id>?region=<your_region>"Replace <snapshot_id> with the ID of the snapshot you want to delete. Replace <your_region> with the region where the share is located.