Skip to main content

Update zone soa

This endpoint allows you to modify the default TTL and the SOA record of the zone.
If your nameserver is configured as secondary, you will be able to adjust the parameters used to synchronize it with the primary nameserver.

Endpoint

PUT /dns/v4/zones/{zonename}/soa

Parameters

NameLocationRequiredTypeDefault valueDescription
zonenameURLYesStringThe zone name
ttlBodyNoInteger28800The zone default TTL
soaBodyNoSOAThe zone SOA

Response

A success message

Example Request

PUT /dns/v4/zones/example.com/soa
Content-Type: application/json
Body
{
"ttl": 43200,
"soa": {
"email": "email@example.com",
"refresh": 28800,
"retry": 7200,
"expire": 604800,
"minimum": 7200
}
}

Example Response

{
"message": "OK"
}