PUT api/Zone/{zone_handle}?user={user}

Update ttl of zone

Request Information

URI Parameters

NameDescriptionTypeAdditional information
zone_handle

Handle of zone to update

string

Required

user

Optional user handle - if empty logged in user will be used

string

None.

Body Parameters

Elements to update

UpdateZone
NameDescriptionTypeAdditional information
Name

Zone name

string

Required

String length: inclusive between 1 and 255

Ttl

Time to live

integer

Range: inclusive between 0 and 2147483647

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Ttl": 2
}

application/xml, text/xml

Sample:
<UpdateZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Namebay.Rest.Api.Models.Zone">
  <Name>sample string 1</Name>
  <Ttl>2</Ttl>
</UpdateZone>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

zone object on success
Collection of errors on failure
Return codes
200 - ok
300 - ambiguous
401 - unauthorized
404 - not found
500 - internal server error
552 - object name and object handle mismatch
702 - Zone not found
703 - Zone is inactive
712 - You're neither Owner, Tech, Admin nor Reseller of the domain
713 - You don't have Advanced DNS Management active for the domain
718 - Invalid SOA record

Zone
NameDescriptionTypeAdditional information
Handle

Zone handle

string

None.

Name

Zone name

string

Required

String length: inclusive between 1 and 255

SoaExpire

integer

Range: inclusive between 1209600 and 2419200

SoaMinimum

integer

Range: inclusive between 3600 and 86400

SoaPrimaryNs

string

Required

String length: inclusive between 1 and 200

SoaSerial

Used To refresh the zone, When the serial changes Bind knows the zone has to be refreshed. This field is updated automaticaly on zone changes

string

None.

SoaRefresh

integer

Range: inclusive between 1200 and 43200

SoaRespPerson

string

String length: inclusive between 0 and 200

SoaRetry

integer

Range: inclusive between 180 and 900

Ttl

Time to live

integer

Range: inclusive between 0 and 2147483647

Response Formats

application/json, text/json

Sample:
{
  "Handle": "sample string 1",
  "Name": "sample string 2",
  "SoaExpire": 3,
  "SoaMinimum": 4,
  "SoaPrimaryNs": "sample string 5",
  "SoaSerial": "sample string 6",
  "SoaRefresh": 7,
  "SoaRespPerson": "sample string 8",
  "SoaRetry": 9,
  "Ttl": 10
}

application/xml, text/xml

Sample:
<Zone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Namebay.Rest.Api.Models.Zone">
  <Handle>sample string 1</Handle>
  <Name>sample string 2</Name>
  <SoaExpire>3</SoaExpire>
  <SoaMinimum>4</SoaMinimum>
  <SoaPrimaryNs>sample string 5</SoaPrimaryNs>
  <SoaRefresh>7</SoaRefresh>
  <SoaRespPerson>sample string 8</SoaRespPerson>
  <SoaRetry>9</SoaRetry>
  <SoaSerial>sample string 6</SoaSerial>
  <Ttl>10</Ttl>
</Zone>