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) |
mobile | String | Remitter Mobile |
beneficiary_id | integer | Beneficiary id received in get beneficiay api |
$parameter = [
"partner_id" => "2",
"mobile" => "7307048402",
"beneficiary_id" => 8
]
$body_json_string = json_encode($parameter);
Name | type | Value |
---|
body | String | Aes Encypted of Json Encoded Body Parameters String |
$request_body = [
"body" => "93A5D34BEED49E72621EAF6327DE9760D76BACB79B4879B578AB4C52F238BEFFCA619103BB9569D80FA87668B5B978F5158FF42736420863870C38F5B44D67C229E226233A6506C9952920070C1F3C1940614DC8B2DEB521860EBBC0202D64B4"
];
$final_body = json_encode($request_body);