How to Update Vultr CDN Push Zones

Updated on April 3, 2025

Updating the label of a Vultr CDN Push Zone is a straightforward process that enables you to better organize and manage your CDN configuration. This process enhances the clarity of your CDN management and ensures your Push Zones are consistently aligned with your workflow.

Follow this guide to update the label of a Vultr CDN Push Zone subscription on your Vultr account using the Vultr Customer Portal, API, or CLI.

  • Vultr Customer Portal
  • Vultr API
  • Vultr CLI
  1. Navigate to Products, click CDN, and then click Push Zones.
  2. Click your target CDN Push Zone subscription to open its management page.
  3. Click Overview.
  4. Under CDN Information, locate the Name field.
  5. Click the current name of the Push Zone subscription and enter a new, appropriate name.
  6. Click the check-mark icon to save the changes.
  1. Send a GET request to the List CDN Push Zones endpoint and note the target Push Zone subscription's ID.

    console
    $ curl "https://api.vultr.com/v2/cdns/push-zones" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. Send a PUT request to the Update CDN Push Zone endpoint to update the target Push Zone subscription's label.

    console
    $ curl "https://api.vultr.com/v2/cdns/push-zones/{pushzone-id}" \
        -X PUT \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
        --data '{
            "label": "{updated_label}"
        }'
    
  1. List all available CDN Push Zone subscriptions and note the target Push Zone subscription's ID.

    console
    $ vultr-cli cdn push list
    
  2. Update the target Push Zone subscription's label.

    console
    $ vultr-cli cdn push update <pushzone-id> --label "<updated_label>"