Description
This function is used to resend verification email for specified domain.
Query
domain/resend_raa
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/resend_raa';
$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>Domain is already verified</resultMsg>
</result>
<resultData/>
</epp>