Skip to main content

Update zone properties

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/v3/zones/{zonename}/properties

Parameters

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

Response

A success message

Example Request

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

Example Response

{
"message": "OK"
}