Preparing Payment Parameters
Collect the order reference, amount, payee context, and customer-facing payment note your flow needs.
UPI payment gateway integration context
UPI Gateway Pro is not a payment gateway. It provides Dynamic QR generation that can be used as part of a merchant UPI payment flow.
Review the full QR flow or start with the Dynamic UPI QR product page.
Collect the order reference, amount, payee context, and customer-facing payment note your flow needs.
Request a QR instance from the generation layer using payment-specific parameters.
Render the QR in a website checkout, order page, invoice page, or merchant interface.
Treat QR creation and payment confirmation as separate events in your order state model.
Use connected payment and financial infrastructure for confirmation, reconciliation, and settlement.
This pseudocode shows the kind of data a merchant flow may prepare. It is not a production API contract, SDK, or webhook specification.
For broader architecture, read how website payment integration is planned and UPI intent vs Dynamic QR.
preparePayment({
order: "ORD-2841",
amount: 12480,
payee: "merchant@upi"
})
display(dynamicQr)