## Delete Subdomain `client.workers.subdomains.delete(SubdomainDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/accounts/{account_id}/workers/subdomain` Deletes a Workers subdomain for an account. ### Parameters - `params: SubdomainDeleteParams` - `account_id: string` Identifier. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); await client.workers.subdomains.delete({ account_id: '023e105f4ecef8ad9ca31a8372d0c353' }); ```