/dns/update_soa
POST https://api.sitehost.nz/1.3/dns/update_soa.json
Updates the SOA record for a domain.
Form Parameters
Parameter | Type | Required | Description |
client_id | integer | Yes | The ID for the client that the record belongs to.Example: 1 |
domain | string | Yes | The domain name associates with the record.Example: example.nz |
ns | string | Yes | The primary name server value.Example: ns1.sitehost.co.nz |
string | Yes | The email address associates with the record.Example: support@sitehost.co.nz | |
refresh | integer | Yes | The refresh value.Example: 3600 |
retry | integer | Yes | The retry value.Example: 3600 |
expire | integer | Yes | The expire value.Example: 3600 |
minimum | integer | Yes | The minimum value.Example: 1 |
ttl | integer | The time-to-live (ttl) value.Example: 3600 |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("POST", "https://api.sitehost.nz/1.3/dns/update_soa.json", false);
var data = new FormData();
data.append("apikey", "your_key_here");
data.append("client_id", "1");
data.append("domain", "example.nz");
data.append("ns", "ns1.sitehost.co.nz");
data.append("email", "support@sitehost.co.nz");
data.append("refresh", "3600");
data.append("retry", "3600");
data.append("expire", "3600");
data.append("minimum", "1");
data.append("ttl", "3600");
xmlHttp.send(data);
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.3/dns/update_soa.json");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
$body = array(
'apikey' => 'your_key_here',
'client_id' => 1,
'domain' => 'example.nz',
'ns' => 'ns1.sitehost.co.nz',
'email' => 'support@sitehost.co.nz',
'refresh' => 3600,
'retry' => 3600,
'expire' => 3600,
'minimum' => 1,
'ttl' => 3600,
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'
uri = URI.parse("https://api.sitehost.nz/1.3/dns/update_soa.json")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Post.new(uri.request_uri)
body = {"apikey" => "your_key_here",
"client_id" => 1,
"domain" => "example.nz",
"ns" => "ns1.sitehost.co.nz",
"email" => "support@sitehost.co.nz",
"refresh" => 3600,
"retry" => 3600,
"expire" => 3600,
"minimum" => 1,
"ttl" => 3600,
}
request.set_form_data(body)
response = http.request(request)
import requests
from collections import OrderedDict
uri = 'https://api.sitehost.nz/1.3/dns/update_soa.json'
# We need ordered dictionary because parameters have to be in the right order.
# Refer to Developer Notes for more information.
body = OrderedDict()
body['apikey'] = 'your_key_here'
body['client_id'] = 1
body['domain'] = 'example.nz'
body['ns'] = 'ns1.sitehost.co.nz'
body['email'] = 'support@sitehost.co.nz'
body['refresh'] = 3600
body['retry'] = 3600
body['expire'] = 3600
body['minimum'] = 1
body['ttl'] = 3600
response = requests.post(uri, data=body)
Response
200:application/json
{
"msg": "Successful.",
"status": true
}
"msg": "Successful.",
"status": true
}