---
title: Update Storage Gateway
url: https://docs.vultr.com/products/storage/storage-gateway/management/update-gateway
description: Learn how to update your Vultr Storage Gateway to access the latest features and security improvements.
publish_date: 2025-05-16T16:38:55.772580Z
last_updated: 2026-05-26T19:42:29.923038Z
---

# How to Update Vultr Storage Gateway

Vultr Storage Gateway (an NFS Gateway for Vultr File System) allows scalable NFS access to VFS volumes. You can update a gateway’s label to better organize your infrastructure, enforce naming conventions, or reflect project changes.

Follow this guide to update a 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) and copy the ID of the gateway you want to update.

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

1. Send a `PUT` request to the [**Update Storage Gateway** endpoint](https://www.vultr.com/api/#tag/storage-gateways/operation/update-storage-gateway) using the copied ID. The only supported field for updates is the label.

    ```console
    $ curl "https://api.vultr.com/v2/storage-gateways/<storage-gateway-id>" \
        -X PUT \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
        --data '{
          "label": "<your-new-storage-gateway-label>"
        }'
    ```

1. Send a `GET` request to the [**Storage Gateway** endpoint](https://www.vultr.com/api/#tag/storage-gateways/operation/get-storage-gateway) using the Storage Gateway ID to confirm the updated label.

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