Introduction
Every credit into a VBA creates a payment in Action Required. Under the Liberalised Remittance Scheme (LRS), you make it compliant by asserting who the remitter is, why they are paying, and that the required tax and documents are in place. This guide walks the four LRS APIs in order.PSP callers must send
X-Merchant-ID on every LRS call, naming the settling sub-merchant — LRS is always scoped to the settling entity, never the PSP.New to the LRS rules, declarations, and required documents? Read LRS & Compliance first — this page is the API walk-through.
Step 1: Verify the Buyer’s PAN
The remitter is identified by PAN, not by the bank sender on the credit. Verifying the PAN checks it against income-tax records and matches the name and date of birth. A verified PAN is the gateway to everything else, so do this first — a mismatch is a guaranteed bank rejection later.verified: false with a reason (e.g. NAME_MISMATCH, INOPERATIVE_PAN) to resolve with the buyer before proceeding.
📚 API Reference
Verify PAN API — full request/response, statuses, and reasons.
Step 2: Quote the TCS
Show the buyer a complete, tax-inclusive amount before they pay. The quote returns the TCS due and the all-in total to collect. For education from the buyer’s own funds, TCS is 2% on the amount above ₹10,00,000 of the remitter’s cumulative LRS this financial year — the first ₹10 lakh each year is TCS-free. This quotes against the LRS usage EximPe can see and reserves nothing, so you can re-quote freely.purpose_code must be one your settling entity is enabled for (its allowlist).
📚 API Reference
Quote LRS Amount API — TCS breakdown and threshold flags.
Step 3: Upload Supporting Documents
Upload each supporting document up front — decoupled from any payment. Each upload returns aref you pass in the next step. This is a multipart/form-data request with a file and a type.
type values depend on the purpose code — e.g. offer_letter, fee_invoice, passport, relationship_declaration, student_id_or_visa. See the document matrix for which documents each purpose code requires.
📚 API Reference
Upload LRS Document API — accepted types and validation.
Step 4: Submit Verification Details
Finally, submit the remaining details for the payment: the remitter, purpose code, invoice, address, contact, declarations, collected TCS, and the documentrefs. EximPe runs the checks (declarations, documents, sender-name match, TCS, money-match), posts the payment to the buyer’s LRS counter, and advances it.
status | Meaning |
|---|---|
under_review | Checks passed; posted to the LRS counter and awaiting bank processing. |
action_required | Something is missing — see the missing array and outstanding amount, fix, and resubmit. |
on_hold | Needs manual attention (e.g. the sender is not the PAN holder). |
Topping up an earlier payment? Pass
linked_payment_id and a reason (REMAINING_AMOUNT or TCS_PAYMENT) on submit. reason is only valid together with linked_payment_id.📚 API Reference
Submit LRS Verification API — full payload, checks, and result statuses.