Query Sub Account
HTTP Request
GET /sapi/v1/broker/subAccount
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | NO | |
page | LONG | NO | default 1 |
size | LONG | NO | default 500 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
Example Response
[
{
"subaccountId": "1",
"email": "[email protected]",
"tag":"bob123",
"makerCommission": 0.001,
"takerCommission": 0.001,
"marginMakerCommission": -1, // if margin disabled, return -1
"marginTakerCommission": -1, // if margin disabled, return -1
"createTime":1544433328000
},
{
"subaccountId": "2",
"email":"[email protected]",
"tag":"bob123",
"makerCommission":0.001,
"takerCommission":0.001,
"marginMakerCommission": 10,
"marginTakerCommission": 10,
"createTime":1544433328000
}
]