add (pending limit order) (authorized)

Places a pending limit order at a specified price. A master can define either the order size or the volume

POST pending/authorized/add

Method works similar to the api/add

{
    "clientId": int,
    "instrument": "string",
    "clientOrderId": "int",
    "price": "int",
    "size": "int",
    "volume": "int",
    "side": "string" // "ask" or "bid" (case-insensitive)
}

Response description

Cancel Reason: Specifies why an order was canceled (e.g., user action, system failure).

Last updated