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
$parameter = [
    'partner_id' => '2'
  	'mobile'   => "1234567890"
];

$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" => "93A5D34BEED49E72621EAF6327DE9760775A6EBBCA3200F31D15596457BA0DE7167FEBA5EB0E6C84B6EC8E04D516FB2EA0E5063545868BB9D8A2598A3CB4FD38"
];

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