Delete tags from an account-level resource
resource_tagging.account_tags.delete(AccountTagDeleteParams**kwargs)
DELETE/accounts/{account_id}/tags
Removes all tags from a specific account-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.comThe previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
X-Auth-Key: 144c9defac04969c7bfad8efaa8ea194Delete tags from an account-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.account_tags.delete(
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)