Check Verification Info

Versi Bahasa Indonesia

Description

This function is used to check verification info for specified domain.

Query

domain/veri_info

Variables

Name Data Type Required/Optional Description
domain String(63) Required Domain name
api_id Integer(11) Required Value that relating API with domain

Request Example

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

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

$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);

Response Example

Success

<?xml version="1.0" encoding="UTF-8"?>
<epp>
    <result>
        <resultCode>1000</resultCode>
        <resultMsg>Command Complete Successfully</resultMsg>
    </result>
    <resultData/>
</epp>

Failed

<?xml version="1.0" encoding="UTF-8"?>
<epp>
    <result>
        <resultCode>2400</resultCode>
        <resultMsg>Failed to get contact</resultMsg>
    </result>
    <resultData/>
</epp>