UPI (Unified payment interface) integration android

37,116

Solution 1

To integrate UPI SDK in you android app you have to partner with a bank which is offering this service. Only UPI enabled banks are allowed to act as PSP (Payment service Provider). Some banks which are offering this service are: Yes Bank, RBL, ICICI Bank, Axis Bank.

Once you have the SDK it's pretty much Plug n Play and will hardly require a day's work. Although the bank that is offering you the SDK will review the developed app to see if it matches their security standards.

Solution 2

It's difficult to find well documented files about how to implement the UPI integration on UPI's website, but below I am mentioning some of the links which you can refer to. Cross refer all documents, one document alone won't help:

https://digidhan.mygov.in/pages/pdf/sbi/NPCI%20Unified%20Payment%20Interface.pdf

Solution 3

I am assuming you aren't asking to become a PSP by yourself as that would require a lot more than just integration(you'll have to be listed under RBI to become a PSP, etc.)

But your problem can be solved by becoming a merchant which will use a PSP in the user's mobile phone. Basically, you will create a URI and will send that as an intent. The PSP apps are given the guidelines to listen to the specific URI and hence, you can invoke the desired PSP app from the list(if you have many PSP apps installed).

The URI will contain the required information. The PSP app can get the details from the URI and the user can just confirm for the payment. The response is being sent to the calling app with the transaction Id and some info. You can use that to carry on with your app's flow.

You can create the URI in the following way:

upi://pay?pa=icici/name&pn=USER_NAME&tid=422d97c1-f0fc-4bea-b24a-511ffa85e86f&am=442.87&tn=Test%transaction

and the intent can be created like:

Intent intent = new Intent();
intent.setData(Uri.parse(UPI));
Intent chooser = Intent.createChooser(intent, "Pay with...");
startActivityForResult(chooser, 1, null);

Listen to the PSP response in the onActivityResult method of your activity.

Solution 4

You can't integrate, unless you are bank, I am also investigating how to integrate UPI - API in app, but unfortunately as of now its restricted to developers, only bank can develop this app using NPCI lib.

Documentation :

- Common library Specifications for Unified Payment Interface

- UNIFIED PAYMENTS INTERFACE Procedural Guidelines

- UNIFIED PAYMENT INTERFACE API and Technology Specifications

Solution 5

Razorpay and few other merchants have tied up with banks and provide this service to end developers like us. You can read more about Razorpay's offering here:

https://razorpay.com/upi/

Share:
37,116
LuminiousAndroid
Author by

LuminiousAndroid

Updated on April 20, 2020

Comments

  • LuminiousAndroid
    LuminiousAndroid about 4 years

    I am building an android application which I thought should have a best payment system that should free user from entering details. I have gone though UPI but no idea how to integrate this.

  • rakesh kashyap
    rakesh kashyap over 7 years
    Any links about this on bank sites?? I am unable to get any details
  • Isj
    Isj over 7 years
    You have to find and contact/email the concerned people of the respective banks.
  • Navnath Memane
    Navnath Memane over 7 years
    They are providing payment gateway sdk and charging 2%+ST per transaction. Not direct UPI sdk to implement.
  • ankitjaininfo
    ankitjaininfo over 7 years
    PhonePe, Razor Pay are a few who have integrated to UPI via a bank.
  • Arun David
    Arun David about 7 years
    How to generate the tid if we are going to use the PSP apps for the transaction?
  • Fabien
    Fabien almost 7 years
    It's best if you could give more details on why this would help, more specifically the features involved.
  • S_S
    S_S over 6 years
    These links are now not active, are there any alternatives?
  • Deepak J
    Deepak J over 4 years
    My Company has just signed with Axis Bank for the UPI services. Soon we will receive the SDK. Will you help me out if I come across any issues with integrating it.
  • Ranjith Kumar
    Ranjith Kumar about 4 years
    Hi deep... But for me amount get transferred but response is showing like "Failure"...