Disable DNSSEC on domain

This function disables DNSSEC on the domain.

Note:

Only servers that run PowerDNS can use DNSSEC. If you call this function on a server that doesn't use PowerDNS, you will receive an error.

Warning:

  • This action is irreversible. If you disable DNSSEC on the domain, you will lose the associated keys. You can only retrieve the keys by restoring them from a full back up of the account.
  • If you disable DNSSEC, you must remove the Delegation of Signing (DS) records on your DNS server and with your registrar.
SecurityBasicAuth
Request
query Parameters
domain
required
string <domain>

The domain for which to disable DNSSEC.

Note:

To disable DNSSEC for multiple domains, duplicate or increment the parameter name. For example, to check three domains, you could:

  • Use the domain parameter multiple times.
  • Use the domain, domain-1, domain-2 parameters.
Examples:
domain=domain=example.com&domain-1=example1.com&domain-2=example2.com
domain=domain=example.com&domain=example1.com&domain=example2.com
domain=example.com
Responses
200

HTTP Request was successful.

Response Schema: application/json
object
object
get/disable_dnssec_for_domains
Request samples
whmapi1 --output=jsonpretty \
  disable_dnssec_for_domains \
  domain='example.com'
Response samples
application/json
{
  • "data": {
    • "domains": [
      • {
        • "disabled": 1,
        • "domain": "example.com"
        }
      ]
    },
  • "metadata": {
    • "command": "disable_dnssec_for_domains",
    • "reason": "OK",
    • "result": 1,
    • "version": 1
    }
}