v51

OpenAPI 3.0.0raw.githubusercontent.com2026-08-01267339950.6 KB
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

messagestring

Example response

{
  "message": "Request accepted"
}