orders (authorized)

Retrieves details of pending limit orders

POST pending/authorized/orders

{
    "clientId": "int",
    "pageSize": "int",
    "pageNumber": "int",
    "from": "int (timestamp)",
    "to": "int (timestamp)",
    "instruments": ["string"],
    "statuses": ["string"],
    "side": "string" // "bid" or "ask" (case-insensitive)
}

Response description

Statuses: PENDING, COMPLETED, or CANCELED

Last updated