Description
Update nameserver of the specified domain.
Query
domain/updatens
List Variable
| Name | Data Type | Required/Optional | Description |
|---|---|---|---|
| domain | String(63) | Required | Domain name |
| api_id | Integer(11) | Required | Unique domain ID |
| nameserver | String(255) | Required | Nameservers, separated by comma (ie: nameserver1, nameserver2, nameserver3, nameserver4). Nameserver3 and nameserver4 are optional. |
Example
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.com'
$post["api_id"] = 1;
$post["nameserver"] = 'ns1.mydomain.com,ns2.mydomain.com';
$url = 'http://[reseller url]/api/domain/updatens';
$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"?> <epp> <result> <resultCode>1000</resultCode> <resultMsg>Update Namesever Success</resultMsg> </result> <resultData/> </epp>
Failed:
<?xml version="1.0" encoding="UTF-8"?> <epp> <result> <resultCode>1001</resultCode> <resultMsg>Object does not exist; ns3.rumahweb.com</resultMsg> </result> </epp>