/srs/transfer_domain
POST https://api.sitehost.nz/1.3/srs/transfer_domain.json
Transfers a domain.
Form Parameters
Parameter | Type | Required | Description |
client_id | integer | Yes | The ID for the client.Example: 1 |
domain | string | Yes | The domain name.Example: example.com |
udai | string | The UDAI / Auth code.Example: Ajhi2Cj | |
params[registrant_contact_id] | integer | The ID of a domain contact to be used as the registrant contact.Example: 12 | |
params[admin_contact_id] | integer | The ID of a domain contact to be used as the administrative contact.Example: 12 | |
params[technical_contact_id] | integer | The ID of a domain contact to be used as the technical contact.Example: 12 | |
params[billing_contact_id] | integer | The ID of a domain contact to be used as the billing contact.Example: 12 | |
params[term] | integer | The domain registration term in months.Example: 12 | |
params[nameservers][0][name] | string | The list of name servers. This parameter accepts one or more values in the format of nameservers[0][name]=x, nameservers[1][name]=y.Example: ns1.sitehost.co.nz | |
params[nameservers][0][ipv4addr] | string | The list of IPv4 address of the nameserver. This parameter accepts one or more values in the format of nameservers[0][ipv4addr]=x, nameservers[1][ipv4addr]=y.Example: 192.168.12.1 | |
params[nameservers][0][ipv6addr] | string | The list of IPv6 address of the nameserver. This parameter accepts one or more values in the format of nameservers[0][ipv6addr]=x, nameservers[1][ipv6addr]=y.Example: fc00:192:168:11::35 |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("POST", "https://api.sitehost.nz/1.3/srs/transfer_domain.json", false);
var data = new FormData();
data.append("apikey", "your_key_here");
data.append("client_id", "1");
data.append("domain", "example.com");
data.append("udai", "Ajhi2Cj");
data.append("params[registrant_contact_id]", "12");
data.append("params[admin_contact_id]", "12");
data.append("params[technical_contact_id]", "12");
data.append("params[billing_contact_id]", "12");
data.append("params[term]", "12");
data.append("params[nameservers][0][name]", "ns1.sitehost.co.nz");
data.append("params[nameservers][0][ipv4addr]", "192.168.12.1");
data.append("params[nameservers][0][ipv6addr]", "fc00:192:168:11::35");
xmlHttp.send(data);
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.3/srs/transfer_domain.json");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
$body = array(
'apikey' => 'your_key_here',
'client_id' => 1,
'domain' => 'example.com',
'udai' => 'Ajhi2Cj',
'params[registrant_contact_id]' => 12,
'params[admin_contact_id]' => 12,
'params[technical_contact_id]' => 12,
'params[billing_contact_id]' => 12,
'params[term]' => 12,
'params[nameservers][0][name]' => 'ns1.sitehost.co.nz',
'params[nameservers][0][ipv4addr]' => '192.168.12.1',
'params[nameservers][0][ipv6addr]' => 'fc00:192:168:11::35',
);
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/srs/transfer_domain.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.com",
"udai" => "Ajhi2Cj",
"params[registrant_contact_id]" => 12,
"params[admin_contact_id]" => 12,
"params[technical_contact_id]" => 12,
"params[billing_contact_id]" => 12,
"params[term]" => 12,
"params[nameservers][0][name]" => "ns1.sitehost.co.nz",
"params[nameservers][0][ipv4addr]" => "192.168.12.1",
"params[nameservers][0][ipv6addr]" => "fc00:192:168:11::35",
}
request.set_form_data(body)
response = http.request(request)
import requests
from collections import OrderedDict
uri = 'https://api.sitehost.nz/1.3/srs/transfer_domain.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.com'
body['udai'] = 'Ajhi2Cj'
body['params[registrant_contact_id]'] = 12
body['params[admin_contact_id]'] = 12
body['params[technical_contact_id]'] = 12
body['params[billing_contact_id]'] = 12
body['params[term]'] = 12
body['params[nameservers][0][name]'] = 'ns1.sitehost.co.nz'
body['params[nameservers][0][ipv4addr]'] = '192.168.12.1'
body['params[nameservers][0][ipv6addr]'] = 'fc00:192:168:11::35'
response = requests.post(uri, data=body)
Response
200:application/json
{
"return": {
"job_id": "3433562"
},
"msg": "Successful",
"status": true
}
"return": {
"job_id": "3433562"
},
"msg": "Successful",
"status": true
}