Description
This function is used to activate/deactivate ID Protection features for specified domain.
Query
domain/set_idprotection
Variables
| Name | Data Type | Required/Optional | Description |
|---|---|---|---|
| domain | String(63) | Required | Domain name |
| api_id | Integer(11) | Required | Value that relating API with domain |
| idprotection | Boolean | Required | ID Protection value (0 or 1) |
Request Example
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.com'
$post["api_id"] = 1;
$post["idprotection"] = 1;
$apiurl = 'http://[reseller url]/api/domain/unsuspend';
$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>ID Protection successfully updated</resultMsg>
</result>
<resultData/>
</epp>
Failed
<?xml version="1.0" encoding="UTF-8"?>
<epp>
<result>
<resultCode>2400</resultCode>
<resultMsg>ID Protection failed to updated</resultMsg>
</result>
<resultData/>
</epp>