Deskripsi
Dapatkan pricelist reseller
Query
reseller/getprice
Contoh
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$url = 'http://[reseller url]/api/reseller/getprice';
$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);
Respon Contoh
Berhasil
<?xml version="1.0" encoding="UTF-8"?> <epp> <result> <resultCode>1000</resultCode> <resultMsg>Command Complete Successfully</resultMsg> </result> <resultData> <file>http://srb3.srs-x.com/asset/downloads/1527152221-RID3-pricelist.csv</file> </resultData> </epp>