Create Dynamic VPA
Use this API to create a dynamic UPI VPA which can be further converted into QR or UPI intent. You can use this product for collecting payments offline or online from your customers.
Flow: Create a dynamic VPA -> convert it into a QR for offline collection, use it as a link for online collection -> receive webhook from Bulkpe about the collection status.
Set up Webhook from Bulkpe Web App - learn more.
  API URL: https://api.bulkpe.in/client/createDynamicVpa
  Method: POST
Auth: Please refer to the Authorization page.
{
    "reference_id": "test0007", //should be an unique reference ID
    "amount": 1
    // "merchantId": "BPSUBVA0013" //pass this param only for Sub Merchant Model
}
  {
    "status": true,
    "statusCode": 200,
    "data": {
        "transcation_id": "BPOD24242",
        "amount": 1,
        "reference_id": "test0007",
        "upi": "upi://pay?pa=2498294829424@yesbank&pn=Bulkpe&am=1&cu=INR&tn=",
        "status": "SUCCESS"
    },
    "message": ""
}