API Documentation DH-Boss


UPI QR Code Generator Api - DHBOSS API

UPI QR Code Generator Api - Add QR Code in UPI Number, Beneficiary Name, Amount, Currency Code information with create best upi qr code one click api.NPCI UPI Compliant QR Code Generator APIS. Features. Completeley free usage; Secure and stateless. Integrate UPI QR API into your Web Applications or Mobile Applications to generate dynamic UPI QR Code. Print Dynamic UPI QR Code on Bills,With UPI QR Code Generator API, you can generate and print dynamic UPI QR Code on Bills, so your customers can scan UPI QR Code, printed - docs.dhboss.com


GET/POST : UPI_QR_GENERATORS

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
upi_number String {Enter Value} Yes
receiver_name String {Enter Value} Yes
transaction_no String {Enter Value} Yes
trans_remark String {Enter Value} Yes
trans_remark String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
response.qr_img string base64 code






Call API URL
https://api.dhboss.com/apicall/upi_qr_generators/
API Call Request Parameters
upi_number=value&receiver_name=value&transaction_no=value&trans_remark=valueapikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/upi_qr_generators/',
  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 => 'upi_number=dhboss@123&receiver_name=dhboss&amount=99&transaction_no=1234567&currency=INR&apikeyfill=code',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "code": 200,
  "status": "success",
  "response": {
    "qr_img": "base64 code"
  }
}