Honestly, this is one of those boring but super important changes that came after the Sept 15, 2025 UPI update. NPCI bumped limits for certain categories like term deposits, insurance premiums, and capital market investments up to ₹10L per day in some cases.
The problem? Most users (and even devs) don’t realize their bank or PSP (PhonePe, Paytm, Razorpay, etc.) might already support higher UPI limits. So your ERP needs to tell them in real-time whether they’re good to go for a high-value payment.
Here’s how I’d approach it:
- Check the user’s actual UPI limits via the PSP API
Most UPI PSPs now let you query a user’s limit metadata using their VPA.
So when someone enters something like user@icici, you hit an endpoint like:
GET /upi/v1/limits?vpa=user@icici
and get back a response that tells you if that category (term deposits = TDOPEN) supports higher limits.
If it says eligible: true, show a banner that says:
Your bank supports high-value UPI deposits (up to ₹10L). You can proceed safely.
If not, fallback to a gentle warning:
Your current UPI account may have a ₹1L cap. Try NEFT/RTGS for larger deposits.
- Use the new NPCI purpose codes
UPI transactions now carry category tags TDOPEN for term deposits, INSURANCE, CAPMKT, etc.
Your ERP should use those to check if the user’s bank supports higher caps for that specific purpose.
If the purpose code is recognized and supported, show that eligibility message.
If not, hide the high-limit banner to avoid confusion.
- Add dynamic messages in the payment screen
Instead of one static Pay via UPI button, make it context-aware:
- If eligible → show High-value UPI enabled (₹10L cap)
- If not → show UPI limit ₹1L try NEFT for larger deposits
Little thing, but it saves tons of failed transactions and support tickets.
- Tag this info in backend logs
Once the eligibility is confirmed, tag the transaction with a flag like
upi_high_value=true.
This helps with reconciliation and audit trails later especially when settlement teams are figuring out why some UPI payments show up in the high-value bucket.
After payment succeeds, include a line like:
Paid via UPI (High-Value Limit Enabled ₹10,00,000 cap).
Auditors love this kind of transparency.