Get Transfer History between Sub-Wallet and Prime Wallet
GET
/open-api/v1/subwallet/transfer/historyThis method allows you to get transfer history between Prime Wallet and Sub Wallets (Only applicable to Prime wallet structure)
API Key permission group : Enable Enquiry
Request
Wallet id
Coin Symbol (in capital letters)
Transfer Direction:10: prime wallet -> sub wallet, 20: sub wallet -> prime wallet, 30: sub wallet -> sub wallet, 40: prime wallet -> prime wallet
Status:10: Pending; 20: Processing; 30: Send success; 99: Failed
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": "24073634100151542086240001",
"direction": 40,
"fromWalletId": 370387818289426400,
"toWalletId": 327283192690466800,
"createTime": 1715100144000,
"coinSymbol": "BTC",
"amount": "151.00000000",
"status": 20,
"requestId": null
},
{
"orderViewId": "24073601652851542064000001",
"direction": 10,
"fromWalletId": 370387818289426400,
"toWalletId": 377611271366909950,
"createTime": 1715825610000,
"coinSymbol": "USDT",
"amount": "1.00000000",
"status": 30,
"requestId": "7"
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
},
"code": "000000",
"message": "Success"
}