Transaction Status

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


Use this API to authenticate with the BOS system and obtain the authorization bearer token. All other API calls must have this token as Authorization header in the format 'Bearer' (without quotes) for them to get processed. The generated token is valid for 600 seconds.

Click to view the steps to generate a public key and the signature.

Body Parameters
{
    "referenceid":12345678927
}
                        
Responses

200

200

Response

200

RESPONSE BODY

object

status    boolean

response_code    integer

utr    string

amount    string

ackno    string

referenceid    string

account    string

txn_status    string

message    string

customercharge    string

gst    string

discount    string

tds    string

netcommission    string

daterefunded    string

refundtxnid    string

401

401

Response

401

RESPONSE BODY

Object

status boolean

responsecode integer

message string


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/TransactStatus' \
--header 'Content-Type: application/json' \
--data  '{
  "referenceid": 12345678927
}'
                                
import requests
import json

url = 'https://api.bos.center/api/BOS/TransactStatus'
payload = json.dumps({
  "referenceid": 12345678927
}) 

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

RESPONSE

200

401

-Result

Example

 
{
  "status": true,
  "response_code": 1,
  "utr": "101306003674",
  "amount": "102",
  "ackno": "128",
  "referenceid": "12345678927",
  "account": "20018575947",
  "txn_status": "1",
  "message": "Transaction Successful",
  "customercharge": "10.00",
  "gst": "1.53",
  "discount": "1.53",
  "tds": "0.19",
  "netcommission": "4.78",
  "daterefunded": "2021-01-15 18:38:38",
  "refundtxnid": "130"
}
                                
{
  "status": false,
  "response_code": 6,
  "message": "Authentication failed."
}