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 |
$parameter = [
'partner_id' => '2'
'mobile' => "1234567890"
];
$body_json_string = json_encode($parameter);
Name | type | Value |
---|
body | String | Aes Encypted of Json Encoded Body Parameters String |
$request_body = [
"body" => "93A5D34BEED49E72621EAF6327DE9760775A6EBBCA3200F31D15596457BA0DE7167FEBA5EB0E6C84B6EC8E04D516FB2EA0E5063545868BB9D8A2598A3CB4FD38"
];
$final_body = json_encode($request_body);