Description
Get user information from his/her userid
Query
user/info
List Variable
| Name | Data Type | Required/Optional | Description |
|---|---|---|---|
| userid | Integer(11) | One Of | User ID |
| user_username | Varchar | One Of | Username |
Example
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["userid"] = '11'
$url = 'http://[reseller url]/api/user/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);
Example Response
Succeed:
<?xml version="1.0" encoding="UTF-8"?>
<epp>
<result>
<resultCode>1000</resultCode>
<resultMsg>Command Complete Successfully</resultMsg>
</result>
<resultData>
<userid>11</userid>
<username>email@email.co.id</username>
<email>email@email.co.id</email>
<fname>john</fname>
<lname/>
<company>personal</company>
<faktur>standar</faktur>
<npwp/>
<wajib_pajak/>
<alamat_wajib_pajak/>
<kategori_wajib_pajak/>
<address>jalan</address>
<address2/>
<address3/>
<city>semarang kota</city>
<province>semarang</province>
<phone>62.274446657</phone>
<fax/>
<postal_code>32424</postal_code>
<user_status>1</user_status>
<country>ID</country>
<postcode>32424</postcode>
</resultData>
</epp>
Failed:
<?xml version="1.0" encoding="UTF-8"?>
<epp>
<result>
<resultCode>1001</resultCode>
<resultMsg>Command Failed</resultMsg>
</result>
</epp>