Create Host

Versi Bahasa Indonesia

Description

Create child nameserver for an active domain.

Query

host/addchild

List Variable

Name Data Type Required/Optional Description
domain String(63) Required Domain name
api_id Integer(11) Required Unique domain ID
nameserver String(63) Required Child nameserver value (contoh : ns1.domainname.co.id)
ipaddress IPV4 Required IP address (IPV4) of the DNS server

Example

$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.co.id'
$post["nameserver"] = 'ns1.domainid.co.id'
$post["api_id"] = 1;
$post["ipaddress"] = '111.111.111.111'
$url = 'http://[reseller url]/api/host/addchild';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiurl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$response = curl_exec($ch);
curl_close($ch);

Example Response

Succeed:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<epp>
<result>
<resultCode>1000</resultCode>
<resultMsg>Command completed successfully</resultMsg>
</result>
</epp>

Failed:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<epp>
<result><resultCode>2303</resultCode>
<resultMsg>Object does not exist; parent domain does not exist</resultMsg>
</result>
</epp>