curl --location --request POST 'https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'clientId: 364E9806o51K9' \
--header 'clientSecret: eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA' \
--header 'organizationId: 223' \
--data-raw '{
"w2wpiRequest": {
"MerchantType": "0088",
"TraceNo": "000019",
"CompanyName": "NOVA",
"DateTime": "20170706121213",
"TerminalId": "NOVA",
"ReceiverMobileNumber": "xxxxxxxxxxx",
"MobileNo": "xxxxxxxxxxx",
"Amount": "100",
"Reserved1": "01"
}
}'
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json',
'clientId': '364E9806o51K9',
'clientSecret': 'eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA',
'organizationId': '223'
},
body: JSON.stringify({
"w2wpiRequest": {
"MerchantType": "0088",
"TraceNo": "000019",
"CompanyName": "NOVA",
"DateTime": "20170706121213",
"TerminalId": "NOVA",
"ReceiverMobileNumber": "xxxxxxxxxxx",
"MobileNo": "xxxxxxxxxxx",
"Amount": "100",
"Reserved1": "01"
}
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"w2wpiRequest": {
"MerchantType": "0088",
"TraceNo": "000019",
"CompanyName": "NOVA",
"DateTime": "20170706121213",
"TerminalId": "NOVA",
"ReceiverMobileNumber": "xxxxxxxxxxx",
"MobileNo": "xxxxxxxxxxx",
"Amount": "100",
"Reserved1": "01"
}
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Accept: application/json',
'clientId: 364E9806o51K9',
'clientSecret: eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA',
'organizationId: 223'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
has context menu
require "uri"
require "json"
require "net/http"
url = URI("https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Accept"] = "application/json"
request["clientId"] = "364E9806o51K9"
request["clientSecret"] = "eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA"
request["organizationId"] = "223"
request.body = JSON.dump({
"w2wpiRequest": {
"MerchantType": "0088",
"TraceNo": "000019",
"CompanyName": "NOVA",
"DateTime": "20170706121213",
"TerminalId": "NOVA",
"ReceiverMobileNumber": "xxxxxxxxxxx",
"MobileNo": "xxxxxxxxxxx",
"Amount": "100",
"Reserved1": "01"
}
})
response = http.request(request)
puts response.read_body
has context menu
Compose
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\r\n \"w2wpiRequest\": {\r\n \"MerchantType\": \"0088\",\r\n \"TraceNo\": \"000019\",\r\n \"CompanyName\": \"NOVA\",\r\n \"DateTime\": \"20170706121213\",\r\n \"TerminalId\": \"NOVA\",\r\n \"ReceiverMobileNumber\": \"xxxxxxxxxxx\",\r\n \"MobileNo\": \"xxxxxxxxxxx\",\r\n \"Amount\": \"100\",\r\n \"Reserved1\": \"01\"\r\n }\r\n}");
Request request = new Request.Builder()
.url("https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json")
.addHeader("clientId", "364E9806o51K9")
.addHeader("clientSecret", "eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA")
.addHeader("organizationId", "223")
.build();
Response response = client.newCall(request).execute();
var client = new RestClient("https://z-sandbox.jsbl.com/zconnect/api/v2/w2wpi-blb");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Accept", "application/json");
request.AddHeader("clientId", "364E9806o51K9");
request.AddHeader("clientSecret", "eyJhbGciOiJIUzUxMiJ9.eyJleHAiOjE2OTI2MzcxOTl9.0s3evOaGFm6uyRxSioiXlOffHbZTDIB1zB1xl3ck_IIfxSrsARI9tPiooIOVjVv9rQqUInqtk1odcWtk8V3rFA");
request.AddHeader("organizationId", "223");
var body = @"{
" + "\n" +
@" ""w2wpiRequest"": {
" + "\n" +
@" ""MerchantType"": ""0088"",
" + "\n" +
@" ""TraceNo"": ""000019"",
" + "\n" +
@" ""CompanyName"": ""NOVA"",
" + "\n" +
@" ""DateTime"": ""20170706121213"",
" + "\n" +
@" ""TerminalId"": ""NOVA"",
" + "\n" +
@" ""ReceiverMobileNumber"": ""xxxxxxxxxxx"",
" + "\n" +
@" ""MobileNo"": ""xxxxxxxxxxx"",
" + "\n" +
@" ""Amount"": ""100"",
" + "\n" +
@" ""Reserved1"": ""01""
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);