Get order details by client order id
-X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/orders?client_order_id={client_order_id}'
Response example
{
"account_number": "12345678@vision",
"client_id": "20171003209384646",
"client_order_id": "01HWYX297HG2J9V607VSY4GQ3S",
"exchange": "Zero Commission",
"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 the order details by the specified client order id.
Request
parameter | description |
---|---|
client_order_id | Required. The client order id |
Response
Order details in the response is the same as in Get order details method.