2
votes

I am working on an asp.net application where we want to implement the Google pay UPI payment method. It should work in the following way when the user clicks on the payment button the control redirects to the users' mobile app and shows the payment request from the Google pay mobile application. Can anyone find me the related docs or links to do this?

1

1 Answers

0
votes

You should be able to do this with UPI linking specification (page 5).

In your case, you would generate a upi:// link with the required parameters. Note that this will launch any UPI mobile app on the user's device. If you want to target the Google Pay app (for India), you should use gpay://upi/ as a prefix instead.

See also my previous answer.