webUPI.requestPayment()
Method
async function requestPayment(args: RequestPaymentArgs): RequestPaymentResponse;
Parameters
interface RequestPaymentArgs {
amount: string | number;
payeeVPA?: string; // If web app wants the user to create from a specific UPI ID account.
transactionNote?: string;
}
Response
interface RequestPaymentResponse {
upiUri: string;
}
Code Example
Last updated