← Articles
UCP Payments India March 27, 2026 · Razorpay Team

UCP Razorpay UPI Payment Handlers: India's Payment Rails Meet Agentic Commerce

TL;DR

Four new PRs from Razorpay introduce UPI payment handlers to UCP — including UPI Intent, UPI Circle (delegated payments), and hosted checkout integration. This is the first major payment handler contribution from India's dominant payment processor, signaling UCP's expansion beyond US/EU payment methods.

10B+
Monthly UPI Txns (India)
~50%
Digital Payments Share
4
New UCP PRs

What's Being Proposed

On March 27, 2026, Razorpay engineers opened four related PRs that collectively add India's UPI payment ecosystem to UCP:

The most interesting of these is UPI Circle — Razorpay's delegated payment feature where users pre-authorize trusted contacts (or agents) to make UPI payments on their behalf up to a specified limit. This maps naturally to agentic commerce scenarios.

Why UPI Matters for Agentic Commerce

India's Unified Payments Interface (UPI) is the world's largest real-time payment system by transaction volume. Unlike card-based systems:

For AI agents, UPI's intent model presents both opportunities and challenges. An agent can't tap a phone to approve a payment — but UPI Circle's delegation model solves this elegantly.

UPI Circle: Delegation for Agents

The UPI Circle PR is particularly significant. The flow:

  1. User setup: Customer creates a UPI Circle delegation in their banking app, authorizing a merchant/agent with a spending limit
  2. Agent discovery: UCP's capability discovery reveals com.razorpay.upi.circle as available
  3. Agent-initiated payment: The AI agent can initiate payments within the delegated limit without per-transaction user approval
  4. Real-time completion: UPI settles immediately; agent receives confirmation

This is agentic commerce done right: explicit user consent and limits, machine-readable capabilities, and real-time settlement.

Technical Architecture

The PRs add several schema components:

// UPI Intent Instrument (PR #313)
{
  "type": "com.razorpay.upi.intent",
  "vpa": "user@upi",  // Virtual Payment Address
  "app_preference": ["gpay", "phonepe", "paytm"]
}

// UPI Circle Credential
{
  "type": "com.razorpay.upi.circle",
  "delegation_id": "del_xxxxx",
  "limit_remaining": 5000,
  "currency": "INR"
}

The hosted checkout handler (PR #316) provides a fallback for cases where delegated payment isn't available — redirecting to Razorpay's Magic Checkout for full payment method selection.

Market Context

This contribution is significant for several reasons:

Implications for AI Commerce

For AI agent developers building commerce experiences:

For businesses implementing UCP, supporting these handlers means access to India's digital-native consumers who increasingly expect AI-assisted shopping experiences.

Next Steps

These PRs are currently open and under review. Key questions the community is evaluating:

Expect iteration on the schemas before merge, but the direction is clear: UCP is becoming genuinely global.

About the Contributors

Himanshu Shekhar and Paras Kathuria from Razorpay authored these PRs. Razorpay is India's leading payment gateway, processing billions in monthly transaction volume across millions of businesses.