IMPS Payout API
Send balance through a bank account number. Upon hitting the IMPS payout endpoint, the server will process the balance transfer to the specified bank account.
POST /api/impspayout
Headers
[
'Token: gPISBVF2qCfXS3HZQxs7e4WD0MQPGH7Affffdfddffd3443',
'MID: oVsspt00008256454dffdffdrr',
'Content-Type: application/json'
]
Request Body
{
"BankName": "Union Bank Of India",
"Account": 73610201045400183854,
"Ifsc": "UBIN0573612",
"Name": "Sampark Jaiswal",
"Mobile": 6392254020,
"Email": "sampark@123.com",
"Amount": 47,
"Description": "i want to withdraw amt",
"TransactionID": 17807355000085
}
Response Body
Payout Accepted :
{
"error": false,
"status_code": 202,
"status": "PENDING",
"account": "7361656502010001838454",
"ifsc": "UBIN0573612",
"Amount": "101",
"Bankriff": "",
"Ack_no": "999990000000453213",
"TransactionID": "1780735500001332",
"message": "MP006 - Your Transaction is In Progress please wait……."
}
Payout Success :
{
"error": false,
"status_code": 200,
"status": "SUCCESS",
"account": "545",
"ifsc": "UBIN0573612",
"Amount": "101",
"Bankriff": "455775548756",
"Ack_no": "999990000000453213",
"TransactionID": "1780735500001332",
"message": "MP00 - Transaction Is Successful"
}
Payout Failed :
{
"error": true,
"status_code": 400,
"status": "FAILED",
"account": "736102010001838454",
"ifsc": "UBIN0573612",
"Amount": "101",
"Bankriff": "",
"Ack_no": "999990000000453213",
"TransactionID": "1780735500001332",
"message": "MP007 - Your Transaction is Failed."
}