IFSC (Out)
Payments to a bank account by IFSC
| Country | Indian |
|---|---|
| Currency | INR (Indian rupee) |
| Method type | upi |
| Direction | Pay-out |
| Integration type | H2H |
| Transfer type | Transfer via IFSC number |
| Account number format | account + IFSC number |
| Limits | **** |
Create Payout (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/payout
{
"amount": 1000, // Payout amount
"currencyTo": "INR", // Currency
"invoiceId": "invoiceID", // Unique invoice identifier on the merchant side
"clientId": "clientID", // Unique client identifier on the merchant side
"type": "ifsc", // Method type
"baseCurrency": "fiat", // Base currency type (fiat, crypto)
"feesStrategy": "add", // Fees handling strategy (add, sub)
"recipient": { // Recipient information
"account_number": "123456789012", // Recipient's account number
"account_internal_client_number": "ICIC0000225", // IFSC bank number
"account_owner": "Account Holder", // Recipient's full name (account holder)
"type": "custom" // Recipient account type
}
}Updated 4 months ago
