Status Forward

Versi Bahasa Indonesia

Description

Check the status of domain forwarding

Query

forward/status

List Variable

Name Data Type Required/Optional Description
domain varchar(255) Required Domain name

Example

$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domain.co.id'
$url = 'http://[reseller url]/api/forward/status';

$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:

<epp>
  <result>
    <resultCode>1000</resultCode>
    <resultMsg>Configuration for this domain is valid for forwarding</resultMsg>
  </result>
  <resultData>
    <target><![CDATA[http://www.domain.com]]></target>
    <type><![CDATA[redirect]]></type>
    <header><![CDATA[]]></header>
    <noframe><![CDATA[]]></noframe>
    <subdomain><![CDATA[0]]></subdomain>
    <path><![CDATA[0]]></path>
  </resultData>
</epp>

Failed:

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