---
title: Delete
url: https://docs.vultr.com/products/network/cdn-pull-zone/management/remove
description: Permanently remove this resource from your Vultr account.
publish_date: 2024-09-23T20:21:05.023323Z
last_updated: 2026-05-26T20:15:56.953769Z
---

# How to Delete Vultr CDN Pull Zones

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 Console, API, or CLI.

=== "Vultr Console"

    1. Navigate to **Products**, click **CDN**, and then click **Pull Zones**.
    1. Click your target CDN Pull Zone subscription to open its management page.
    1. Click the delete icon in the top-right corner of the management page.
    1. Check the **Yes, destroy this CDN** box in the confirmation prompt, and click **Delete CDN** to permanently delete the target CDN Pull Zone subscription.

=== "Vultr API"

    1. Send a `GET` request to the [**List CDN Pull Zones** endpoint](https://www.vultr.com/api/#tag/CDNs/operation/list-pullzones) 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}"
        ```

    1. Send a `DELETE` request to the [**Delete CDN Pull Zone** endpoint](https://www.vultr.com/api/#tag/CDNs/operation/delete-pullzone) to delete the target Pull Zone subscription.

        ```console
        $ curl "https://api.vultr.com/v2/cdns/pull-zones/{pullzone-id}" \
            -X DELETE \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```

=== "Vultr CLI"

    1. List all available CDN Pull Zone subscriptions and note the target Pull Zone subscription's ID.

        ```console
        $ vultr-cli cdn pull list
        ```

    1. Delete the target Pull Zone subscription.

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