---
title: Delete Export
url: https://docs.vultr.com/products/cloud-storage/storage-gateway/management/delete-export
description: Learn how to permanently remove an export from your Vultr Storage Gateway
publish_date: 2025-05-16T16:30:30.204799Z
last_updated: 2026-05-26T19:42:29.436105Z
---

# How to Delete an Export for an Existing Vultr Storage Gateway

Vultr Storage Gateway (an NFS Gateway for Vultr File System) allows Vultr Bare Metal and Cloud Compute instances to access VFS volumes over NFS. If you no longer want a specific VFS volume exposed through a gateway, you can remove its export configuration. Deleting an export revokes access to the specified volume via NFS for any clients relying on that export, effectively detaching it from the gateway without affecting the underlying VFS volume.

Follow this guide to delete an export for an existing Vultr Storage Gateway using the Vultr API.

1. Send a `GET` request to the [**List Storage Gateways** endpoint](https://www.vultr.com/api/#tag/storage-gateways/operation/list-storage-gateways) to list all configured Storage Gateways. Note the IDs of the Storage Gateway and the export you want to delete.

    ```console
    $ curl "https://api.vultr.com/v2/storage-gateways" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```

1. Send a `DELETE` request to the [**Delete Storage Gateway Export** endpoint](https://www.vultr.com/api/#tag/storage-gateways/operation/delete-storage-gateway-export) with the Storage Gateway ID and export ID to remove the specified export.

    ```console
    $ curl "https://api.vultr.com/v2/storage-gateways/<storage-gateway-id>/exports/<export-id>" \
        -X DELETE \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```