Description
Payment confirmation after adding funds to reseller account.
Query
reseller/requestdeposit
List Variable
Name | Data Type | Required/Optional | Description |
---|---|---|---|
bank_tujuan | String(63) | Required | Destination Bank |
nama_pemilik | String(63)Required | Sender Name | |
jumlah | numericRequired | Amount | |
keterangan | String(63)Required | Comment | |
no_rekening | String(63)Optional | Sender's bank account number |
Example
$post["username"] = 'apiusername'; $post["password"] = hash('sha256','apipassword'); $post["bank_tujuan"] = 'Bank Mandiri' $post["nama_pemilik"] = 'Mr John Doe' $post["jumlah"] = '1000000' $post["keterangan"] = 'Add fund for reseller XXX' <pre> $url = 'http://[reseller url]/api/reseller/requestdeposit'; $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" standalone="yes"?> <epp> <result> <resultCode>1000</resultCode> <resultMsg>Command completed successfully</resultMsg> </result> </epp>