Header

NameTypeValue
api-keystring(get it from api credentials in api panel)
content-typestringapplication/json
acceptstringapplication/json
$header = [  
    'accept: application/json',  
    'api-key: XdWCmd0NF1ZVklnVPegOdL59WkFM7o4h91UYPAt1',  
    'content-type: application/json',  
];

Request Body Parameters

NameTypeValue
partner_idinteger(Get in from api panel you api parner id)
mobileStringRemitter Mobile
beneficiary_idintegerBeneficiary id received in get beneficiay api
$parameter = [
    "partner_id" => "2",
    "mobile" => "7307048402",
    "beneficiary_id" => 8
]

$body_json_string = json_encode($parameter);

Request Body to be sent in Json

NametypeValue
bodyStringAes Encypted of Json Encoded Body Parameters String
$request_body = [
    "body" => "93A5D34BEED49E72621EAF6327DE9760D76BACB79B4879B578AB4C52F238BEFFCA619103BB9569D80FA87668B5B978F5158FF42736420863870C38F5B44D67C229E226233A6506C9952920070C1F3C1940614DC8B2DEB521860EBBC0202D64B4"
];

$final_body = json_encode($request_body);
Language
Authorization
Header
Click Try It! to start a request and see the response here!