## Delete Subdomain `workers.subdomains.delete(SubdomainDeleteParams**kwargs)` **delete** `/accounts/{account_id}/workers/subdomain` Deletes a Workers subdomain for an account. ### Parameters - `account_id: str` Identifier. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) client.workers.subdomains.delete( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) ```