curl --location 'https://api.bos.center/api/BOS/transact' \
--header 'Content-Type: application/json' \
--data '{
"mobile": 9800000076,
"referenceid": 1XXXXXXX1,
"pipe": "bank1|bank2|bank3",
"pincode": 110027,
"address": "New Delhi",
"dob": "01-01-2000",
"gst_state": "07",
"bene_id": 1XXX2,
"txntype": "IMPS|NEFT",
"amount": 1XX0
}'
import requests
import json
url = 'https://api.bos.center/api/BOS/transact'
payload = json.dumps({
"mobile": 9800000076,
"referenceid": 1XXXXXXX1,
"pipe": "bank1|bank2|bank3",
"pincode": 110027,
"address": "New Delhi",
"dob": "01-01-2000",
"gst_state": "07",
"bene_id": 1XXX2,
"txntype": "IMPS|NEFT",
"amount": 1XX0
})
headers = {
"Content-type" : "application/json"
}
response = requests.request("POST", url, headers=headers, data=payload)
print (response.text)
var requests = require("request");
var options = {
"method" : "POST",
"url" : 'https://api.bos.center/api/BOS/transact',
"headers" : {
"Content-Type" : 'application/json'
},
body: JSON.stringify({
"mobile": 9800000076,
"referenceid": 1XXXXXXX1,
"pipe": "bank1|bank2|bank3",
"pincode": 110027,
"address": "New Delhi",
"dob": "01-01-2000",
"gst_state": "07",
"bene_id": 1XXX2,
"txntype": "IMPS|NEFT",
"amount": 1XX0
})
};
request(options, function(error, response){
if(error) throw new Error(error);
console.log(response.body);
});
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post,'https://api.bos.center/api/BOS/transact')
var content = new StringContent(
"{
"mobile": 9800000076,
"referenceid": 1XXXXXXX1,
"pipe": "bank1|bank2|bank3",
"pincode": 110027,
"address": "New Delhi",
"dob": "01-01-2000",
"gst_state": "07",
"bene_id": 1XXX2,
"txntype": "IMPS|NEFT",
"amount": 1XX0
}",
null,"application/json"
);
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.bos.center/api/BOS/transact',
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 => '{
"mobile": 9800000076,
"referenceid": 1XXXXXXX1,
"pipe": "bank1|bank2|bank3",
"pincode": 110027,
"address": "New Delhi",
"dob": "01-01-2000",
"gst_state": "07",
"bene_id": 1XXX2,
"txntype": "IMPS|NEFT",
"amount": 1XX0
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;