How to Update Vultr CDN Pull Zones

Updated on April 3, 2025

Updating the label of a Vultr CDN Pull 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 Pull Zones are consistently aligned with your workflow.

Follow this guide to update the label of a Vultr CDN Pull 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 Pull Zones.
  2. Click your target CDN Pull 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 Pull 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 Pull Zones endpoint and note the target Pull Zone subscription's ID.

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

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

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

    console
    $ vultr-cli cdn pull update <pullzone-id> --label "<updated_label>"