Create Payout
/payouts/v3/payments/banksCreates a single payout to a beneficiary's bank account or UPI VPA. Supports IMPS, NEFT, RTGS, and UPI payment modes.
For IMPS/NEFT/RTGS, provide accountNumber and branchCode. For UPI, provide vpa instead.
Bearer token. Get token →Request Body
| Name | Type | Description |
|---|---|---|
clientReferenceId | stringrequired | Unique identifier to track the payout. Must not contain spaces. Acts as the idempotency key — duplicate requests with the same |
payeeName | stringrequired | Name of the beneficiary's bank account holder. Alphabets and spaces only. |
email | string | Email address of the beneficiary. |
phone | string | Mobile number of the beneficiary (10 numeric digits). |
accountNumber | string | Beneficiary's bank account number. Mandatory for IMPS, NEFT, and RTGS. |
branchCode | string | Beneficiary's bank IFSC code. Mandatory for IMPS, NEFT, and RTGS. First 4 characters alphabets, 5th character must be 0, remaining alphanumeric. |
amount | objectrequired | Payout monetary amount with currency. For payout creation, minimum ₹1 (100 paisa), maximum ₹10 lakh (100000000 paisa). |
value | integerrequired | Amount in the smallest currency unit (paisa for INR). Minimum ₹1 (100), maximum ₹10 lakh (100000000). |
currency | stringrequired | Three-letter ISO 4217 currency code. |
mode | UPI | IMPS | NEFT | RTGSrequired | Mode of payment for the payout. UPIIMPSNEFTRTGS |
remarks | stringrequired | Description or reference text for the transaction. Supported characters A-Z, a-z, 0-9, hyphen, space. |
Status Codes
201 | Payout created and scheduled successfully. |
400 | |
401 | |
403 | |
409 | |
500 |
curl --request POST \
--url https://pluraluat.v2.pinepg.in/payouts/v3/payments/banks \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"clientReferenceId": "430582f3-6e83-4cec-a3ab-72847fb9680f",
"payeeName": "Kevin Bob",
"email": "kevin.bob@example.com",
"phone": "9876543210",
"accountNumber": "500012121313141415",
"branchCode": "SBIN0011123",
"amount": {
"value": 4900,
"currency": "INR"
},
"mode": "IMPS",
"remarks": "Refund payment"
}'