## Delete Web3 Hostname `web3.hostnames.delete(stridentifier, HostnameDeleteParams**kwargs) -> HostnameDeleteResponse` **delete** `/zones/{zone_id}/web3/hostnames/{identifier}` Delete Web3 Hostname ### Parameters - `zone_id: str` Specify the identifier of the hostname. - `identifier: str` Specify the identifier of the hostname. ### Returns - `class HostnameDeleteResponse: …` - `id: str` Specify the identifier of the hostname. ### 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 ) hostname = client.web3.hostnames.delete( identifier="023e105f4ecef8ad9ca31a8372d0c353", zone_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(hostname.id) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": { "id": "023e105f4ecef8ad9ca31a8372d0c353" }, "success": true } ```