UPI Intent (Self Hosted)

UPI Intent enables users to have a smooth experience of UPI payments on Mobile devices. Users can able to pay via any UPI PSP Apps on their devices.

This Self Hosted UPI Intent flow enabled users to have a seamless experience on UPI Intents without having to integrate our SDK.

GET URI for UPI Intent

POST https://public_key:secret_key@api.ippopay.com/v1/order/{ORDER ID}/process

Use this API to fetch URI for the UPI Intent

Request Body

NameTypeDescription

Name

string

Name of the customer

email

string

Email id of the customer

phone

string

Phone number of the customer

pay_mode_id

string

upi-intent

{
  "success": true,
  "message": "Opening UPI Apps...",
  "data": {
    "pay_process": {
      "action": "intent",
      "redirect_data": {
        "data": {
          "upi_intent": "upi://pay?pa=ippopaypg@yesbank&pn=Ippopay&mc=7399&tr=ORDER_XXX&tn=IppopayPG&am=1439.6"
        }
      }
    }
  }
}

Last updated