## Delete URL Normalization settings `url_normalization.delete(URLNormalizationDeleteParams**kwargs)` **delete** `/zones/{zone_id}/url_normalization` Deletes the URL Normalization settings. ### Parameters - `zone_id: str` The unique ID of the zone. ### 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.url_normalization.delete( zone_id="9f1839b6152d298aca64c4e906b6d074", ) ```