Get Deposit History under Sub-Wallet
GET
/open-api/v1/subwallet/deposit/historyThis method allows you to get deposit history of the requested sub Wallet Id, coinSymbol and network.
API Key permission group : Enable Enquiry
NOTES: Suggest to use Get Sub-wallet deposit history by prime wallets (incl. sub wallets) , this endpoint will be deprecated after 30Jun2023
Request
Sub Wallet id
Coin symbol (in capital letters); All symbols if not specific
Network symbol; All networks if not specific
Start time (timestamp in milliseconds)
End time (timestamp in milliseconds)
Page limit, min: 1, max: 500
Page number, min: 1
Current Timestamp in millisecond
OpenAPI key string
Signature of the request
Request samples
Responses
response data, maybe null
'000000' indicates success, while any others indicate failure.
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
{
"data": {
"data": [
{
"orderViewId": "20373289000288833536",
"txId": null,
"transferType": 20,
"direction": 10,
"fromAddress": "370387791055810560",
"toAddress": "370388040948248576",
"network": null,
"coinSymbol": "BTC",
"amount": "10.11000000",
"feeSymbol": null,
"feeAmount": "0.00000000",
"status": 40,
"confirmedBlockCount": null,
"unlockConfirm": null,
"maxConfirmBlock": null,
"memo": null,
"txTime": 1714129420298,
"walletId": 370388040948248600,
"requestId": null
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
},
"code": "000000",
"message": "Success"
}