Skip to content
Start here

Delete tags from a zone-level resource

resource_tagging.zone_tags.delete(ZoneTagDeleteParams**kwargs)
DELETE/zones/{zone_id}/tags

Removes all tags from a specific zone-level resource.

Security

API Email + API Key

The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.

Example:X-Auth-Email: user@example.com

The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.

Example:X-Auth-Key: 144c9defac04969c7bfad8efaa8ea194
ParametersExpand Collapse
zone_id: str

Zone ID is required only for zone-level resources

maxLength32
minLength32
if_match: Optional[str]

Delete tags from a zone-level resource

import os
from cloudflare import Cloudflare

client = Cloudflare(
    api_email=os.environ.get("CLOUDFLARE_EMAIL"),  # This is the default and can be omitted
    api_key=os.environ.get("CLOUDFLARE_API_KEY"),  # This is the default and can be omitted
)
client.resource_tagging.zone_tags.delete(
    zone_id="023e105f4ecef8ad9ca31a8372d0c353",
)
Returns Examples