1. Withdraw history page
https://domain/api/withdrawal/page
3.1) request body
name |
type |
necessary |
remark |
pageNo |
int |
N |
default 1 |
pageSize |
int |
N |
default 20 |
status |
string |
N |
null for all, NEW/PENDING/SUCCESS/FAILED |
collectionType |
string |
N |
null for all, UPI/CARD |
3.2) response body
name |
type |
remark |
success |
bool |
true/false |
errCode |
string |
error code: 0 is success, Non-zero is error code |
errMsg |
string |
error message when error code is non-zero |
data |
T |
bussiness entity |
data description
name |
type |
remark |
number |
int |
pageNo |
size |
int |
pageSize |
totalPages |
int |
total pages count |
content |
list<T> |
list of article items |
T description
name |
type |
remark |
id |
string |
Order ID |
created |
int |
created timestamp |
modified |
int |
latest modified timestamp |
paidTime |
int |
paid timestamp |
countryId |
string |
country id: IN |
tool |
string |
withdraw tool, only for UPI withdraw, PHONEPE/AIRTEL/... |
status |
string |
null for all, NEW/PENDING/SUCCESS/FAILED |
amount |
float |
withdraw amount |
collectionType |
String |
CARD/UPI |
bankInfo |
T |
bankInfo description
name |
type |
remark |
name |
string |
beneficiary name |
bankAccountNo |
int |
beneficiary bank account number |
ifsc |
int |
beneficiary ifsc code |
upi |
string |
UPI withdraw upiId like 9046518460@ybl |