Create Dynamic QR Code

Post  https://api.bos.center/api/BOS/V4/DynamicQRCode


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
{
  "RegistrationID": "BOS-554",
  "amount": "10"
}
                        
HEADERS

Content-Type string

application/json

Responses

200

200

Response

200

RESPONSE BODY

object

status    string

subCode    string

message    string

qrCode    string

virtualVPA    string

400

400

Response

400

RESPONSE BODY

Object

status string

subCode string

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/V4/DynamicQRCode' \
--header 'Content-Type: application/json' \
--data  '{
  "RegistrationID": "BOS-554",
  "amount": "10"
}'
                                
import requests
import json

url = 'https://api.bos.center/api/BOS/V4/DynamicQRCode'
payload = json.dumps({
  "RegistrationID": "BOS-554",
  "amount": "10"
}) 

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

RESPONSE

200

400

-Result

Example

 
{
    "id": "qr_Oe8y06oN0Kj1cx",
    "txnRefranceID": "BOS554V221201",
    "entity": "qr_code",
    "CreatedDateTime": "2024-07-28T23:31:16+05:30",
    "UPIIntend": "upi://pay?ver=01&mode=22&pa=random@razorpay&pn=BOSCENTERPRIVATELIMITED&tr=RZPOe8y06oN0Kj1cxqrv2&cu=INR&mc=8299&qrMedium=04&tn=PaymenttoBOSCENTERPRIVATELIMITED&am=10",
    "PaymentAmount": 10,
    "status": "active",
    "ExpireDateTime": "2024-07-28T23:36:09+05:30",
    "Status": "True",
    "message": "QR Code Generated",
    "Value": ""
}
                                
{
  "status": "ERROR",
  "subCode": "400",
  "message": "VPA does not exist for the account provided"
}