> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # DeleteDnsZone # Package: domains # Namespace: DomainDns # Method link: https://dev.wix.com/docs/api-reference/account-level/domains/domain-dns/delete-dns-zone.md ## Introduction Deletes a DNS zone in [Google's Cloud DNS](https://cloud.google.com/dns). The call is synchronous, that means it fails in case of an error on Google's side. > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header. --- ## REST API ### Schema ``` Method: deleteDnsZone Description: Deletes a DNS zone in [Google's Cloud DNS](https://cloud.google.com/dns). The call is synchronous, that means it fails in case of an error on Google's side. > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header. URL: https://www.wixapis.com/domains/v1/dns-zones/{domainName} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: domainName Method parameters: param name: domainName | type: none | required: true Return type: DeleteDnsZoneResponse EMPTY-OBJECT {} ``` ### Examples ### Delete a DNS zone. ```curl curl -X DELETE 'https://www.wixapis.com/domains/v1/dns-zones/mysite.com' \ -H 'wix-account-id: ' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.domains.DomainDns.deleteDnsZone(domainName) Description: Deletes a DNS zone in [Google's Cloud DNS](https://cloud.google.com/dns). The call is synchronous, that means it fails in case of an error on Google's side. > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: domainName Method parameters: param name: domainName | type: string | description: Domain name to delete the DNS zone for. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### Delete a DNS zone with an API Key ```javascript import { createClient, ApiKeyStrategy } from "@wix/sdk"; import { domainDns } from "@wix/domains"; const wixClient = createClient({ modules: { domainDns }, auth: ApiKeyStrategy({ siteId: "MY-SITE-ID", apiKey: "MY-API-KEY", }), }); async function deleteDnsZone(domainName) { const response = await domainDns.deleteDnsZone(domainName); } ``` ### deleteDnsZone (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { domainDns } from '@wix/domains'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { domainDns }, // Include the auth strategy and host as relevant }); async function deleteDnsZone(domainName) { const response = await myWixClient.domainDns.deleteDnsZone(domainName); }; ``` ---