UPI Payout API
Send balance through a UPI ID. Upon hitting the UPI payout endpoint, the server will process the balance transfer to the specified UPI ID.
POST /api/payout
Headers
[
'Token: gPISBVF2qCfXS3HZQxs7e4WD0MQPGH7Affffdfddffd3443',
'MID: oVsspt00008256454dffdffdrr',
'Content-Type: application/json'
]
Request Body
{
"Name":"Sampark Jaiswal",
"Mobile":6392254020,
"Email":"sampark@122.com",
"Amount":101,
"Description":"i want to withdraw amt 10",
"TransactionID":654669018933321,
"Upi":"6392252240230@sbi"
}
Response Body
Payout Accepted :
{
"error": false,
"status_code": 202,
"status": "PENDING",
"account": "63922554522433020@okdffdf",
"Amount": 101,
"Bankriff": "",
"Ack_no": "999990000000177939",
"TransactionID": 65466901893345433354240,
"message": "MP006 - Your Transaction is In Progress please wait……."
}
Payout Success :
{
"error": false,
"status_code": 200,
"status": "SUCCESS",
"account": "6349225224023430@okdffdf",
"Amount": 101,
"Bankriff": "455775548756",
"Ack_no": "999990000000177939",
"TransactionID": 65466901893345433354240,
"message": "MP00 - Transaction Is Successful"
}
Payout Failed :
{
"error": true,
"status_code": 400,
"status": "FAILED",
"account": "6349225224023430@okdffdf",
"Amount": "101",
"Bankriff": "",
"Ack_no": "999990000000453213",
"TransactionID": "1780735500001332",
"message": "MP007 - Your Transaction is Failed."
}