Deleting a Vultr CDN Pull Zone subscription is a straightforward process that removes all associated caching and distribution configurations for your content. This action will terminate the CDN Pull Zone subscription, 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 a Vultr CDN Pull Zone subscription from your Vultr account using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List CDN Pull Zones endpoint and note the target Pull Zone subscription's ID.
$ curl "https://api.vultr.com/v2/cdns/pull-zones" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a DELETE
request to the Delete CDN Pull Zone endpoint to delete the target Pull Zone subscription.
$ curl "https://api.vultr.com/v2/cdns/pull-zones/{pullzone-id}" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all available CDN Pull Zone subscriptions and note the target Pull Zone subscription's ID.
$ vultr-cli cdn pull list
Delete the target Pull Zone subscription.
$ vultr-cli cdn pull delete <pullzone-id>
No comments yet.