Change Sub Account COIN-Ⓜ Futures Commission Adjustment
API Description
- This request will change the COIN-Ⓜ futures commission for a sub account.
- You need to enable "trade" option for the api key which requests this endpoint.
- The sub-account's COIN-Ⓜ futures commission of a symbol equals to the base commission of the symbol on the sub-account's fee tier plus the commission adjustment.
HTTP Request
POST /sapi/v1/broker/subAccountApi/commission/coinFutures
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | YES | |
pair | STRING | YES | BTCUSD |
makerAdjustment | INT | YES | 100 for 0.01% |
takerAdjustment | INT | YES | 100 for 0.01% |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- If futures disabled, it is not allowed to set subaccount's COIN-Ⓜ futures commission adjustment on any symbol.
- Different symbols have the same commission for the same pair
Example Response
{
"subAccountId": 1,
"pair": "BTCUSD",
"makerAdjustment": 150, // COIN-Ⓜ futures commission adjustment for maker
"takerAdjustment": 150, // COIN-Ⓜ futures commission adjustment for taker
"makerCommission": 450, // COIN-Ⓜ futures commission (after adjusted) for maker
"takerCommission": 550, // COIN-Ⓜ futures commission (after adjusted) for taker
}