Change Sub Account USDT-Ⓜ Futures Commission Adjustment
API Description
- This request will change the USDT-Ⓜ futures commission for a sub account.
- You need to enable "trade" option for the api key which requests this endpoint.
- The sub-account's USDT-Ⓜ 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/futures
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | YES | |
symbol | STRING | YES | |
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 USDT-Ⓜ futures commission adjustment on any symbol.
Example Response
{
"subAccountId": 1,
"symbol": "BTCUSDT",
"makerAdjustment": 150, // USDT-Ⓜ futures commission adjustment for maker
"takerAdjustment": 150, // USDT-Ⓜ futures commission adjustment for taker
"makerCommission": 450, // USDT-Ⓜ futures commission (after adjusted) for maker
"takerCommission": 550, // USDT-Ⓜ futures commission (after adjusted) for taker
}