DNS: Zone
Delete DNS records
Delete DNS records for the selected domain.
To filter which records to delete, add the name of the record and type to the filter. Multiple filters can be provided with single request.
If you have multiple records with the same name and type, and you want to delete only part of them, refer to the Update zone records endpoint.
Use this endpoint to remove specific DNS records from domains.
delete/api/dns/v1/zones/{domain}
Path parameters
domainstring required
Example:mydomain.tld
Domain name
Request body
Example request
{
"filters": [
{
"name": "@",
"type": "A"
}
]
}Response
Success response
Example response
{
"message": "Request accepted"
}