---
title: Update
url: https://docs.vultr.com/products/compute/serverless-inference/management/update
description: Modify your servers configuration or settings to apply changes or improvements.
publish_date: 2025-03-11T19:09:13.749524Z
last_updated: 2026-05-26T19:10:38.500952Z
---

# How to Update Vultr Serverless Inference

Updating a Serverless Inference subscription changes its label without affecting the underlying deployment. This helps streamline resource organization and improves clarity when managing multiple inference subscriptions.

Follow this guide to update a Serverless Inference subscription using the Vultr API or CLI.

=== "Vultr API"

    1. Send a `GET` request to the [**List Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/list-inference) and note the target inference subscription's ID.

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

    1. Send a `PATCH` request to the [**Update Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/update-inference) to update the label of the target inference subscription.
    
        ```console
        $ curl "https://api.vultr.com/v2/inference/{inference-id}" \
            -X PATCH \
            -H "Authorization: Bearer ${VULTR_API_KEY}" \
            -H "Content-Type: application/json" \
            --data '{
                "label" : "example-inference-updated"
            }'
        ```    

=== "Vultr CLI"

    1. List all the inference subscriptions available and note the target inference subscription's ID.

        ```console
        $ vultr-cli inference list
        ```

    1. Update the label of the target inference subscription.

        ```console
        $ vultr-cli inference update <inference-ID> --label example-inference-updated
        ```
