Name | Type | Value |
---|
api-key | string | (get it from api credentials in api panel) |
content-type | string | application/json |
accept | string | application/json |
$header = [
'accept: application/json',
'api-key: XdWCmd0NF1ZVklnVPegOdL59WkFM7o4h91UYPAt1',
'content-type: application/json',
];
Name | Type | Value |
---|
partner_id | integer | (Get in from api panel you api parner id) |
operator | String | (Get it From Provider Data Api) |
type | String | PAY |
requestId | String | Get it from bill fetch api response |
apitxnid | String | Unique Reference id Of Merchant |
amount | String | Get it from bill fetch api response due amount |
param0 | String | Mandatory (Get parameter array from provider api for every provider for number of manadatory biller input ) |
param1 | String | Conditional (Follow No of parameter input of provider) |
param2 | String | Conditional (Follow No of parameter input of provider) |
$parameter = [
'partner_id' => '1'
'operator' => "PAYT00000NATTQ",
'type' => "PAY",
'requestId' => "ANTBBPS123456",
'apitxnid' => "ANTBBPS123456",
'amount' => 200
'param0' => 'UP00AA1234'
];
$body_json_string = json_encode($parameter);
Name | type | Value |
---|
body | String | Aes Encypted of Json Encoded Body Parameters String |
$request_body = [
"body" => "CE9BD8918E7971EFBA20CE7CF47582570B6B4932B6BF1D861071F02E92249698285B621186146CA93C8906DE3DB0D09216A579F7D89407E290BC5827ED770AE7305DAD79D50111144EC6EB6B793B5D4F83CB503CEA1279FF50F974F660E84851BCF53FA8FB132BEF412CC5084E6BC21B"
];
$final_body = json_encode($request_body);
Name | type | Condition | Possible Value |
---|
statuscode | String | All Time | TXN / TUP / TXF / ERR |
message | String | All Time | Transaction Response Message |
apitxnid | String | In Case TXN / TXF | Merchant Unique Transaction Id |
payid | String | In Case TXN / TXF | Ebanker Transaction Id |
refno | String | In Case TXN / TXF | Billpayment Reference |
number | String | In Case TXN / TXF | Bill Number |
provider | String | In Case TXN / TXF | Bill Provider |
amount | String | In Case TXN / TXF | Bill Amount |