Bank Payout Pay your user commission without add Beneficiary (VPA / Bank account number and IFSC code.)
Bank OR UPI Transfer New V2.1
https://payment.goterpay.com/v3/payout/transfer
Body Data:-
{
"mid":"MID",
"mkey" :"MKEY",
"subwallet" : "SUBWALLET",
"type" : "1",
"mode" : "IMPS",
"name" : "YOUR NAME",
"account" : "1234567890",
"ifsccode" : "GOTR0123456",
"amount" : "20",
"txnid" : "GP72456278"
"callbackurl":"https://yourdomain.com/callback"
}
Parameters | Description | Example |
---|---|---|
METHOD | POST | HTTP POST |
Content Type | JSON | application/json |
mid mandatory |
Find on our apikey page | MRN1223334 |
mkey mandatory |
Find on our apikey page | 56546456 |
subwallet mandatory |
Find on our apikey page | 56DFFFS456 |
type mandatory |
1 for Bank, 2 for UPI | 1/2 |
mode mandatory |
mode only for type 1 | IMPS/NEFT/RTGS/UPI |
name mandatory |
Beneficiary bank account name | Pooja SenGupta |
account mandatory |
bank account number Or UPI/VPN ID | 0123456789/1234567890@UPI |
ifsccode conditional |
Bank ifsc code only for type 1 | KKBK0001351 |
amount mandatory |
payment amount min.10 & Mix. 200000 | 10 |
txnid mandatory |
our unique transaction id , maximum length is 10. | 46348567 |
callbackurl optional |
our callbank url. | https://yourdomain.com/callback |
//Output json
{
"txnid": "GP72456278",
"status": "PROCESSING",
"message": "Payout Request Accepted"
}
CallBack:-
{"status":"SUCCESS","txnid":"GP72456278","utrno":"521717440424","bankacc":"0123456789","ifsccode":"KKBK0001351","name":"Pooja SenGupta","amount":"20.00","fees":"4.72","date":"2025-08-05 11:42:40","message":"Payment Transfer Success"}
//STATUS CHECK
URL:- https://payment.goterpay.com/v3/payout/status
//body data
{
"mid":"mid",
"mkey" :"mkey",
"txnid" : "GP72456278"
}
Parameters | Description | Example |
---|---|---|
METHOD | POST | HTTP POST |
Content Type | JSON | application/json |
mid mandatory |
Find on our apikey page | MRN1223334 |
mkey mandatory |
Find on our apikey page | 56546456 |
txnid mandatory |
your request id | 46348567 |
//Output:-
{"status":"SUCCESS","txnid":"GP72456278","utrno":"521717440424","bankacc":"0123456789","ifsccode":"KKBK0001351","name":"Pooja SenGupta","amount":"20.00","fees":"4.72","date":"2025-08-05 11:42:40","message":"Payment Transfer Success"}