Query Crypto Transfers
Last updated
{
"code": 0, // (number: response code)
"msg": "", // (string: response message)
"data": [ // (array: list of transfer records)
{
"id": "", // (string: unique ID of the transfer record)
"tokenId": "", // (string: token symbol)
"amount": "", // (string: transferred amount)
"clientId": "", // (string: client ID)
"merchantId": "", // (string: merchant ID of this record)
"fromMerchantId": "", // (string: sender merchant ID)
"toMerchantId": "" // (string: recipient merchant ID)
}
]
}GET /v2/assets/internalTransferOrders?tokenId=&clientId=&startTime=0&endTime=0&pageSize=10&merchantId={
"code": 200,
"msg": "SUCCESS",
"data": [
{
"id": "4355",
"tokenId": "USDT",
"amount": "10",
"clientId": "1",
"merchantId": "61",
"fromMerchantId": "246",
"toMerchantId": "61"
},
{
"id": "4354",
"tokenId": "USDT",
"amount": "-10",
"clientId": "1",
"merchantId": "246",
"fromMerchantId": "246",
"toMerchantId": "61"
}
]
}