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
| Name | Location | Required | Type | Default value | Description |
|---|---|---|---|---|---|
| zonename | URL | Yes | String | The zone name | |
| ttl | Body | No | Integer | 28800 | The zone default TTL |
| soa | Body | No | SOA | The 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"
}