Transaction Status

Post  https://api.bos.center/api/BOS/TranStatus


Body Parameters
{
  "OrderID": "12345"
}
                        
Responses

200

200

Response

200

RESPONSE BODY

JSON

400

400

Response

400

RESPONSE BODY

Object


Did this page help you?     Yes    No

Language
shell Shell
python Python
node Node
c# C#
php PHP

cURL

curl --location 'https://api.bos.center/api/BOS/TranStatus' \
--header 'Content-Type: application/json' \
--data  '{
  "OrderID": "12345"
}'
                                
import requests
import json

url = 'https://api.bos.center/api/BOS/TranStatus'
payload = json.dumps({
  "OrderID": "12345"
}) 

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/TranStatus',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "OrderID": "12345"
  }) 
}; 
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/TranStatus')
var content = new StringContent(
  "{
    "OrderID": "12345"
  }",
  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/TranStatus',
  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 =>  '{
    "OrderID": "12345"
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

400

-Result

Example

[
  {
    "statuscode": "TXN",
	"status": "Transaction successful",
	"externalRef": "A20240409172504530551",
	"txnValue": "1275.00",
	"txnReferenceId": "410017713194",
	"Payeeaccount": "74560100005627",
	"Payeename": "",
	"timestamps": "2024-04-09 17:25:20",
	"orderid": "1240409172520NMTHG",
	"LoginID": "BOS-2153",
	"BOSSignature": "30ceb1623bc98c0d30068405de37f27f152aaf083f3a8d5655bcaeb7950968f8"
  }
]
                                
"Status : False Message : No Data Found againts of RTExxxxxxx48"