## Delete Web3 Hostname `client.web3.hostnames.delete(stringidentifier, HostnameDeleteParamsparams, RequestOptionsoptions?): HostnameDeleteResponse | null` **delete** `/zones/{zone_id}/web3/hostnames/{identifier}` Delete Web3 Hostname ### Parameters - `identifier: string` Specify the identifier of the hostname. - `params: HostnameDeleteParams` - `zone_id: string` Specify the identifier of the hostname. ### Returns - `HostnameDeleteResponse` - `id: string` Specify the identifier of the hostname. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const hostname = await client.web3.hostnames.delete('023e105f4ecef8ad9ca31a8372d0c353', { zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(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 } ```