add (authorized)

Places an order on behalf of a client. Only for masters

POST authorized/add

Method works similar to the api/add with two additional fields:

• clientId: The ID of the client for whom the order is placed. • liquidation: Optional boolean flag to indicate if the trade is a liquidation (default is false).

{
    "instrument": "BTC-USD",
    "clientOrderId": 123456789,
    "price": 999900000000,
    "size": 10000000,
    "side": "bid",
    "type": "limitIOC",
    "clientId": 5,
    "liquidation": true
}

Last updated