Create Dynamic QR Code

Post  https://api.aopay.co.in/api/AOP/V4/DynamicQRCode


In this API, you will provide the user's unique registration identifier along with the payable amount to initiate or validate a transaction. These values are essential to associate the transaction with the correct user and ensure accurate processing of the specified amount.

Body Parameters
{
  "RegistrationID": "AOP-554",
  "amount": "10"
}
Request Parameters
Name Type Description
RegistrationID String Unique registration identifier, often tied to the user.
Amount String The amount being paid by the customer in this transaction.
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.aopay.co.in/api/AOP/V4/DynamicQRCode' \
--header 'Content-Type: application/json' \
--data  '{
  "RegistrationID": "AOP-554",
  "amount": "10"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/V4/DynamicQRCode'
payload = json.dumps({
  "RegistrationID": "AOP-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.aopay.co.in/api/AOP/V4/DynamicQRCode',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "RegistrationID": "AOP-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.aopay.co.in/api/AOP/V4/DynamicQRCode')
var content = new StringContent(
  "{
    "RegistrationID": "AOP-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.aopay.co.in/api/AOP/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": "AOP-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": "AOP554V221201",
    "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"
}