[PayOut] INR Payment Data
For shops with INR currency, when creating a payout (POST /api/v1/payouts) the following fields must be sent in the paymentData object.
Required fields in paymentData
| Parameter | Type | Required | Description |
|---|---|---|---|
| ifsc_code | string | Yes | IFSC code (Indian Financial System Code) — bank branch identifier in India. |
| holder | string | Yes | Recipient name (account/card holder). |
Example request body
{
"external_id": "PAY-INR-001",
"amount": 5000.00,
"currency": "INR",
"card_number": "4111111111111111",
"shop_code": "your_inr_shop",
"paymentData": {
"ifsc_code": "SBIN0001234",
"holder": "Rahul Sharma"
}
}
Without valid ifsc_code and holder in paymentData, the request will be rejected with a validation error (422, "Invalid paymentData").