Check Domain

Versi Bahasa Indonesia

Deskripsi

This API used to check availibility domain

Query

domain/check

List Variabel

Name Data Type Required/Optional Description
domain String(63) Required Domain Name

Example request

$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.com'

$apiurl = 'http://[reseller url]/api/domain/check';

$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

Success

<?xml version="1.0" encoding="UTF-8"?>
<epp>
  <result>
    <resultCode>1000</resultCode>
    <resultMsg>Domain Available</resultMsg>
  </result>
  <resultData/>
</epp>

Failed

<?xml version="1.0" encoding="UTF-8"?>
<epp>
  <result>
    <resultCode>1001</resultCode>
    <resultMsg>Command Failed</resultMsg>
  </result>
  <resultData/>
</epp>