Overview:
Bank Transfer enables instant bank transfers in India
Payin
Not supported yet
Payout
Required Fields:
| Field | Type | Requirement Level | Description |
|---|---|---|---|
amount | number | Required | Amount in the local currency |
currency | string | Required | INR |
method_code | string | Required | "BANK_TRANSFER_INR" |
recipient.wallet_uid | string | Conditional | Recipient’s bank account number |
recipient.full_name | string | Required | Recipient’s full name |
recipient.phone | string | Conditional | Recipient’s phone number |
recipient.ifsc_code | string | Conditional | Recipient’s IFSC code |
reference | string | Required | Merchant reference |
country | string | Required | Country (iso2) |
metadata | object | Optional | Merchant metadata |
webhook_url | string | Optional | HTTPS URL for notifications |
sender.full_name | string | Optional | Sender's full name |
sender.address | string | Optional | Sender's address |
sender.phone | string | Optional | Sender's phone number |
Sample Payload:
{
"amount": 100,
"currency": "INR",
"method_code": "BANK_TRANSFER_INR",
"recipient": {
"wallet_uid": "9876543210",
"full_name": "Firstname Surname",
"ifsc_code": "HDFC0001234"
},
"reference": "INV-2025-001",
"country": "IN",
"metadata": {
"internal_id": "user1234"
},
"webhook_url": "https://yourwebsite.com/webhook",
"sender": {
"full_name": "Firstname Surname",
"address": "No 2, Green Median Str"
}
}
