Request Samples

Updating a single SOA record

This packet updates a SOA record of the domain with ID 12.

<packet version="1.4.2.0">
<dns>
 <set>
  <filter>
   <domain_id>12</domain_id>
  </filter>
  <soa>
   <ttl>86400</ttl>
   <refresh>10800</refresh>
   <retry>3600</retry>
   <expire>604800</expire>
   <minimum>10800</minimum>
  </soa>
 </set>
</dns>
</packet>

 

This packet updates a SOA record of the DNS zone template.

<packet version="1.4.2.0">
<dns>
 <set>
  <soa>
   <ttl>86400</ttl>
   <refresh>10800</refresh>
   <retry>3600</retry>
   <expire>604800</expire>
   <minimum>10800</minimum>
  </soa>
 </set>
</dns>
</packet> 

 

Updating multiple SOA records

This packet updates SOA records of the domains with ID 12 and 13.

<packet version="1.4.2.0">
<dns>
 <set>
  <filter>
   <domain_id>12</domain_id>
   <domain_id>13</domain_id>
  </filter>
  <soa>
   <ttl>86400</ttl>
   <refresh>10800</refresh>
   <retry>3600</retry>
   <expire>604800</expire>
   <minimum>10800</minimum>
  </soa>
 </set>
</dns>
</packet>

 

This packet updates SOA records of the domains with ID 5 and ID 7 and the server template SOA record.

<packet version="1.4.2.0">
<dns>
 <set>
  <filter>
   <domain_id>5</domain_id>
  </filter>
  <soa>
   <ttl>8640</ttl>
   <refresh>1080</refresh>
   <retry>3600</retry>
   <expire>60480</expire>
   <minimum>1080</minimum>
  </soa>
 </set>
 <set>
  <soa>
   <ttl>86400</ttl>
   <refresh>10800</refresh>
   <retry>3600</retry>
   <expire>604800</expire>
   <minimum>10800</minimum>
  </soa>
 </set>
</dns>
</packet>