How to Delete Vultr CDN Pull Zones

Updated on November 27, 2024

Deleting a Vultr CDN Pull Zone service is a straightforward process that removes all associated caching and distribution configurations for your content. This action will terminate the CDN service, stopping the delivery and caching of your content across Vultr's global network. By deleting the Pull Zone, you will clear all related cached data and configurations, effectively halting any further distribution and access through the CDN.

Follow this guide to delete the Vultr CDN Pull Zone service on your Vultr account, and ensure that you manage and discontinue CDN resources efficiently 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.

    Pull Zone option in products sidebar

  2. Click your target CDN Pull Zones service.

    Selection of a target Pull Zone service

  3. Click delete icon.

    Delete button for CDN Pull Zone

  4. Click Delete CDN on the confirmation prompt to permanently delete the target CDN Pull Zone service.

    Delete confirmation for CDN Pullzone

  1. Send a GET request to the List Pull Zones endpoint and note the target Pull Zone service's ID.

    console
    $ curl "https://api.vultr.com/v2/cdns/pull-zones" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. Send a DELETE request to the Delete Pull Zone endpoint to delete the target Pull Zone service.

    console
    $ curl "https://api.vultr.com/v2/cdns/pull-zones/<pullzone-id>" \
        -X DELETE \                                
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  1. List all available CDN Pull Zones services and note the target Pull Zone service's ID.

    console
    $ vultr-cli cdn pull list
    
  2. Delete the target Pull Zone service.

    console
    $ vultr-cli cdn pull delete <pullzone-id>