Get active orders
-X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/accounts/{account_number}/activeorders'
Response example
[
{
"account_number": "12345678@vision",
"client_id": "20171003209384646",
"client_order_id": "01HWYX297HG2J9V607VSY4GQ3S",
"exchange": "auto",
"quantity": 1,
"executed_quantity": 0,
"order_status": "new",
"price": 20,
"stop_price": 0,
"time_in_force": "day",
"order_type": "limit",
"order_side": "buy",
"symbol": "BAC",
"tag": "order #12"
}
]
Get an array of active orders. Every element in the response is the same as in Get order details method.