查询子账户合约资金划转历史(适用主账户)
接口描述
查询子账户合约资金划转历史
HTTP请求
GET /sapi/v1/sub-account/futures/internalTransfer
请求权重(IP)
1
请求参数
名称 | 类型 | 是否必需 | 描述 |
---|---|---|---|
STRING | YES | 子账户邮箱 备注 | |
futuresType | LONG | YES | 1:USDT合约,2: 币本位合约 |
startTime | LONG | NO | 默认返回100天内历史记录 |
endTime | LONG | NO | 默认返回100天内历史记录 |
page | INT | NO | 默认值: 1 |
limit | INT | NO | 默认值: 50, 最大值:500 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
响应示例
{
"success":true,
"futuresType": 2,
"transfers":[
{
"from":"aaa@test.com",
"to":"bbb@test.com",
"asset":"BTC",
"qty":"1",
"tranId":11897001102,
"time":1544433328000
},
{
"from":"bbb@test.com",
"to":"ccc@test.com",
"asset":"ETH",
"qty":"2",
"tranId":11631474902,
"time":1544433328000
}
]
}