linkedin
Q:

Which Payment Gateway Zomato Uses?

  • Honey Singh
  • Jul 30, 2024

1 Answers

A:

Zomato Payments, a part of Zomato, provides payment services using the Unified Payments Interface (UPI) in partnership with ICICI Bank. This includes payments between merchants and individuals. Zomato also has Zomato Pay, which lets users pay directly through the Zomato app at certain restaurants.

  • Komal Mittal
  • Jul 30, 2024

0 0

Related Question and Answers

A:

When your POS system hits the new UPI caps mid-checkout for a term deposit opening, the key is to fall back gracefully without making the customer feel like the transaction failed. After September 15, 2025, NPCI allows higher UPI limits (up to ₹10 lakh/day) for verified categories like term deposits, but if a customer hits that cap (either per-transaction or daily), your POS needs to automatically suggest alternate, compliant payment methods so the flow doesn’t break.

Here’s how to handle it smartly:

  • Detect limit breaches early.

Before the UPI intent even fires, your POS should validate the amount against the merchant’s configured NPCI category cap and the customer’s remaining daily quota. If it’s close to the cap (say, above 90%), show a pre-check message like This UPI payment may exceed your daily limit. Would you like to split or use another method? This saves users from failed transactions at the final step.

  • Offer context-aware fallback options.

For high-value term deposits, don’t just say use another method. Suggest specific alternatives that suit the context:

  • Netbanking (NEFT/RTGS): Ideal for large transactions above ₹2 lakh. Most customers opening term deposits are already comfortable with it.
  • Debit card (linked to same bank): For users who prefer to stay within one ecosystem some banks allow instant deposit funding this way.
  • IMPS (for smaller spillover amounts): Works if only a few thousand rupees exceed the UPI cap.
  • In-branch collection or cheque: As a last resort for users uncomfortable with online flows or those hitting regulatory limits.
  •  Auto-split suggestion for UPI itself.

If the total is ₹10.5 lakh and the customer has ₹9.5 lakh remaining under their UPI limit, the POS should automatically prompt: You can complete ₹9.5 lakh now via UPI and pay the remaining ₹1 lakh via netbanking. Split flows like this help keep conversion rates high while staying compliant.

  • Persist the context.

Make sure the fallback options carry over the customer’s original term deposit details amount, duration, account so they don’t have to re-enter everything when switching methods. This makes the fallback feel like a continuation, not a restart.

  • Use real-time PSP feedback.

If the PSP returns a response like TXN_LIMIT_EXCEEDED or DAILY_CAP_REACHED, your POS should map that error to a user-friendly suggestion, not a dead-end error. Example: This payment exceeds your UPI daily limit. You can continue securely using netbanking or card.

  • Log fallback triggers for compliance.

Each fallback should be recorded with details like original payment method, failure code, chosen alternative, and timestamp. NPCI and auditors often ask for this data when verifying compliance with limit rules.

  • Gagandeep singh
  • Nov 18, 2025

A:

When your POS system hits the new UPI caps mid-checkout for a term deposit opening, the key is to fall back gracefully without making the customer feel like the transaction failed. After September 15, 2025, NPCI allows higher UPI limits (up to ₹10 lakh/day) for verified categories like term deposits, but if a customer hits that cap (either per-transaction or daily), your POS needs to automatically suggest alternate, compliant payment methods so the flow doesn’t break.

Here’s how to handle it smartly:

  • Detect limit breaches early.

Before the UPI intent even fires, your POS should validate the amount against the merchant’s configured NPCI category cap and the customer’s remaining daily quota. If it’s close to the cap (say, above 90%), show a pre-check message like This UPI payment may exceed your daily limit. Would you like to split or use another method? This saves users from failed transactions at the final step.

  • Offer context-aware fallback options.

For high-value term deposits, don’t just say use another method. Suggest specific alternatives that suit the context:

  • Netbanking (NEFT/RTGS): Ideal for large transactions above ₹2 lakh. Most customers opening term deposits are already comfortable with it.
  • Debit card (linked to same bank): For users who prefer to stay within one ecosystem some banks allow instant deposit funding this way.
  • IMPS (for smaller spillover amounts): Works if only a few thousand rupees exceed the UPI cap.
  • In-branch collection or cheque: As a last resort for users uncomfortable with online flows or those hitting regulatory limits.
  • Auto-split suggestion for UPI itself.

If the total is ₹10.5 lakh and the customer has ₹9.5 lakh remaining under their UPI limit, the POS should automatically prompt: You can complete ₹9.5 lakh now via UPI and pay the remaining ₹1 lakh via netbanking. Split flows like this help keep conversion rates high while staying compliant.

  • Persist the context.

Make sure the fallback options carry over the customer’s original term deposit details amount, duration, account so they don’t have to re-enter everything when switching methods. This makes the fallback feel like a continuation, not a restart.

  • Use real-time PSP feedback.

If the PSP returns a response like TXN_LIMIT_EXCEEDED or DAILY_CAP_REACHED, your POS should map that error to a user-friendly suggestion, not a dead-end error. Example: This payment exceeds your UPI daily limit. You can continue securely using netbanking or card.

  • Log fallback triggers for compliance.

Each fallback should be recorded with details like original payment method, failure code, chosen alternative, and timestamp. NPCI and auditors often ask for this data when verifying compliance with limit rules.

  • Yakshit Chaudhary
  • Nov 18, 2025

A:

If your POS system accepts UPI payments for term deposit openings, you’ll need to tweak both your settlement and ledger rules to handle the new high-value UPI limits properly. Since September 15, 2025, the NPCI lets verified categories like term deposits go up to ₹10 lakh per day — but that also means your system has to treat these transactions differently from normal retail payments.
First, update your settlement rules. Tag every UPI transaction meant for term deposits with the correct NPCI purpose code INVS_TD. This ensures they aren’t mixed with normal sales payments. Route them through a separate investment or deposit settlement batch rather than the standard POS batch, because banks may process these through different merchant codes and timings. Large-value UPI payments (above ₹2 lakh) often settle on a T+1 basis, so your settlement logic must support delayed posting. Also, only allow routing through verified PSP handles that actually support high-value UPI; not every PSP does. Finally, your reconciliation flow should match each incoming UPI receipt against a term deposit creation request so that the finance team never sees unlinked receipts in their end-of-day reports.
Next, update your ledger mapping. In normal retail flows, a UPI receipt credits sales revenue but for term deposits, that’s incorrect. Instead, when a customer opens a term deposit via UPI, the entry should debit the bank (UPI receipts) and credit a Term Deposit Liability account. Once the term deposit is actually created or confirmed in the core banking system, that liability should move to the Term Deposit Principal account. If a refund happens before creation, you’d reverse it by debiting the liability and crediting Bank UPI Refunds Payable.
You’ll also want to add some extra controls in your posting logic. Always store the NPCI purpose code (INVS_TD) in your transaction records so audits can identify investment-linked UPI flows. Maintain a link between the UPI Reference ID and the Term Deposit ID to make reconciliation painless. Set up a daily aggregate view to make sure the total UPI receipts tagged as INVS_TD don’t exceed ₹10 lakh per merchant per day. And log PSP handle details and payer VPAs to meet compliance requirements.
Before settlement posting, the POS should also verify a few things: that the PSP handle supports high-value UPI, the transaction status is successful, the settlement window hasn’t expired, and the total daily inflows for that category are still within limit. If any of these checks fail, the transaction should be flagged for manual review instead of getting auto-posted.

  • Vicky Kumar
  • Nov 16, 2025

A:

To simplify audits and ensure compliance:

  • Add a purpose code field in your UPI integration (INVS_TD or equivalent).
  • Map it through your billing, ledger, and reconciliation modules.
  • Validate it before posting any high-value term deposit receipt.
  • Surface it in reports to make audit trails easy and RBI-aligned.
  • Shankar lal
  • Nov 17, 2025

A:

When your reconciliation software talks to UPI APIs (like PSPs or banks) to confirm settlements or fetch status updates, there’s always a risk of hammering the API too hard during load spikes, especially when credit card bill payments are high-value and time-sensitive. If you don’t throttle intelligently, you’ll either hit NPCI or PSP rate limits or end up with duplicate reconciliation entries.

Here’s how you can configure throttling and retry logic the smart way

  • Implement exponential backoff:

Don’t retry failed UPI status calls instantly. Start with a short delay (like 2–5 seconds) and double it with every retry — up to a max backoff of, say, 2 minutes. This keeps your system from flooding PSP endpoints when they’re lagging.

  • Add jitter (random delay):

A minor DDoS can occur when hundreds of reconciliation workers hit the same PSP API, causing all retries to line up again. To ensure that retries spread out naturally, add a little random delay (such as ±10%) on top of your backoff timing.

  • Use adaptive throttling:

Your overall request rate should be temporarily slowed by, say, 30 to 50% if your system detects increasing response delays or error rates more than 10%. Rolling averages over the last five minutes can be used to automatically identify these increases.

  • Batch non-urgent checks:

For transactions already past T+1 or marked pending confirmation, batch them into scheduled jobs instead of real-time retries. Keep the high-priority API calls only for same-day settlements or partial reversals.

  • Track retry attempts in a state table:

Log every retry attempt with timestamp, reason, and PSP response. This prevents double retries for the same UPI reference ID if your service restarts mid-operation.

  • Graceful failure fallback:

After, say, 5 failed attempts, stop hitting the PSP and move the item into a manual review or deferred check queue. You can reattempt later when PSP latency stabilizes or when NPCI publishes new status files.

  • Dynamic alerting:

Set up an alert rule like average API latency > 1.5s or failure rate > 15% for 10 minutes so your ops team knows it’s a systemic slowdown and not a software bug.

  • The Karnataka State Cricket Association
  • Nov 18, 2025

Find the Best Payment Gateway

Explore all products with features, pricing, reviews and more

View All Software
img

Have a Question?

Get answered by real users or software experts

Ask Question

Help the community

Be the First to Answer these questions

How can SaaS invoicing tool tag UPI collections for credit card bill payments with the correct purpose code to simplify audits?

Write Answer

Which settlement and ledger rules in accounting package must be updated to post high-value credit card bill payments UPI receipts correctly?

Write Answer

What alerts should finance teams enable in billing software to watch daily aggregate UPI usage for term deposit opening transactions?

Write Answer

What workflows should billing software add so credit card bill payments UPI payments auto-split when they exceed the per-transaction cap?

Write Answer

Still got Questions on your mind?

Get answered by real users or software experts

Disclaimer

Techjockey’s software industry experts offer advice for educational and informational purposes only. A category or product query or issue posted, created, or compiled by Techjockey is not meant to replace your independent judgment.

Software icon representing 20,000+ Software Listed 20,000+ Software Listed

Price tag icon for best price guarantee Best Price Guaranteed

Expert consultation icon Free Expert Consultation

Happy customer icon representing 2 million+ customers 2M+ Happy Customers