Get Filtered Orders
List a user's outstanding and executed orders
Overview
This GET endpoint enables to you list all outstanding and executed orders of the user whose authorization token was used in the request header. Optionally, you can filter the list by a set of criteria provided in the request's body.
There are six required parameters that must be provided in the request:
Et-App-Key (header). This is the unique key of your app that identifies your app when communicating with our service. Contact your administrator to get this key.
Authorization (header). This is the authorization token from the very first token request.
Trading Account ID (path). This is the numeric ID of the trading account whose orders must be retrieved.
API version (path). Unless necessary, leave it at "1.0".
pageNumber (query). Because there can be dozens of outstanding orders, we split them into pages which you can individually retrieve by specifying this parameter.
pageSize (query). This parameter indicates the number of orders from a particular page that must be returned in the response. The maximum value for this parameter is 100.
There's also three optional parameters worth examining:
filter (query). This is an SQL query used to retrieve only those orders that satisfy the conditions of the query. The following table outlines the parameter's syntax.
desc (query). This parameter indicated if the orders should be sorted in ascending or descending order.
filter (query). This is an SQL query used to retrieve only those orders that satisfy the conditions of the query. The following table outlines the parameter's syntax.
Sample queries below must be converted depending on the used encoding. For example, the #
sign must be converted to %23
and so on.
Syntax
Description
Example
CreateDate (>, >=, <, <=) Date
CreateDate between Range
This query enables you to retrieve orders that were created in the time period specified in the Range parameter or exactly at the time specified in the Date parameter.
CreateDate between #2019-03-13T18:31:42# and #2019-03-17T18:31:42#
CreateDate >= #2019-03-13T18:31:42#
CreateDate < #2019-03-12T19:31:42#
SecurityId = Number
This query enables you to retrieve orders whose securityId parameter is equal to the Id provided in the query.
SecurityId = 4
Status in (value1, value2, etc.)
This query enables you to retrieve orders whose Status parameter is contained in the query set.
Status in (0,1,4,5,7)
Status in (0)
Here's the final template for this API request:
For orders that will only be verified by the API but not the execution venue (quick):
apiURL/v1.0/accounts/{accountNumber}/orders?pageNumber=0&pageSize=2&sortField=Id&desc=true
For orders that will be verified by the API and the execution venue too (slow):
apiURL/v1.0/accounts/{accountNumber}/syncorders?pageNumber=0&pageSize=2&sortField=Id&desc=true
Response
In response to this API request, you'll receive the following JSON file that lists the specified number of orders
{
"Result": [
{
"Id": 73552,
"SecurityId": 4,
"Quantity": 150,
"Price": 0,
"StopPrice": 0,
"ClientId": "1045239786",
"ExecutedQuantity": 150,
"LastPrice": 156.57,
"LastQuantity": 150,
"LeavesQuantity": 0,
"AveragePrice": 156.57,
"Side": "Buy",
"Date": "2019-01-22T13:00:26.575811Z",
"TransactionDate": "2019-01-22T14:30:03.7168916Z",
"SettDate": "0001-01-01T00:00:00Z",
"Status": "Filled",
"ExecutionStatus": "Filled",
"Type": "Market",
"RequestStatus": "Complete",
"Target": "Modify",
"TimeInForce": "Day",
"ExecInst": "AllOrNone",
"ExpireDate": "2019-01-22T21:00:00Z",
"CounterPartyOrderId": "1045239786",
"AccountId": 6303,
"UserId": 7125,
"RequestId": 96193,
"StateId": 168831,
"ParentId": -1,
"Legs": [],
"Exchange": "Auto",
"ExecutionVenue": "Autoshares Emulator",
"TrailingStopAmountType": "Absolute",
"TrailingStopAmount": 0,
"TrailingLimitAmountType": "Absolute",
"TrailingLimitAmount": 0,
"CreateDate": "2019-01-21T15:07:45.8158882Z",
"InitialType": "Market",
"IsExternal": false,
"ExecBrocker": "Auto",
"ExecutionInstructions": {},
"TransType": "New",
"ExecId": "173657808",
"ValidationsToBypass": 0,
"ParentRequestId": 0,
"SettlementDate": "0001-01-01T00:00:00Z"
},
{
"Id": 75225,
"SecurityId": 2829,
"Quantity": 100,
"Price": 0,
"StopPrice": 0,
"ClientId": "931672854",
"ExecutedQuantity": 0,
"LastPrice": 0,
"LastQuantity": 0,
"LeavesQuantity": 0,
"AveragePrice": 0,
"Side": "Buy",
"Date": "2019-01-30T15:09:23.7597893Z",
"TransactionDate": "2019-01-30T21:01:00.0397665Z",
"SettDate": "0001-01-01T00:00:00Z",
"Status": "DoneForDay",
"ExecutionStatus": "DoneForDay",
"Type": "Market",
"RequestStatus": "Complete",
"Target": "New",
"Description": "Expired by OMS",
"Comment": "",
"TimeInForce": "Day",
"ExecInst": 0,
"ExpireDate": "2019-01-30T21:00:00Z",
"AccountId": 6303,
"UserId": 7125,
"RequestId": 98413,
"StateId": 173093,
"ParentId": -1,
"Legs": [],
"ExecutionVenue": "Autoshares Emulator",
"TrailingStopAmountType": "Absolute",
"TrailingStopAmount": 0,
"TrailingLimitAmountType": "Absolute",
"TrailingLimitAmount": 0,
"CreateDate": "2019-01-30T15:09:23.7597893Z",
"InitialType": "Market",
"IsExternal": false,
"ExecBrocker": "NSDQ",
"ExecutionInstructions": {},
"TransType": "New",
"ValidationsToBypass": 0,
"ParentRequestId": 0,
"SettlementDate": "0001-01-01T00:00:00Z"
}
],
"NextPageLink": "https://pub-api-et-demo-prod.etnasoft.us/api/v1.0/accounts/6303/orders?pageNumber=1&pageSize=2",
"PreviousPageLink": "",
"TotalCount": 5
}
where:
Parameter
Description
Id
This is the internal ID of the order.
SecurityId
This is the internal ID of the underlying security of the order.
Quantity
This is the number of shares in the order.
StopPrice
This is the stop price of the order (if there's no stop price — the value of this parameter will be 0).
ClientId
This is the order ID on the client's side.
ExecutedQuantity
This is the number of shares that have been purchased or sold.
LastPrice
This is the price of the last executed order for the underlying security.
LastQuantity
This is the number of shares that were traded in the last transaction.
LeavesQuantity
This is the number of shares in the order that are yet to be purchased.
AveragePrice
This is the average price at which the order was executed.
Side
This is the type of order (could be "Buy", "Sell", "SellShort", or "BuyToCover").
Date
This is the date on which the order was placed by the user.
TransactionDate
This is the date on which the transaction took place.
Status
This is the current status of the order. Possible values:
0 - New
1 - Partially Filled
2 - Filled
3 - Done For Day
4 - Canceled
5 - Replaced
6 - Pending Cancel
7 - Stopped
8 - Rejected
9 - Suspended
10 - Pending New
11 - Calculated
12 - Expired
13 - Accepted For Bidding
14 - Pending Replace
15 - Error
TimeInForce
Indicates the time frame in which the order will be active. Possible Values:
Day. The order automatically expires at the end of the regular trading session if it weren't executed.
GTC (Good-till-Canceled). The order persists indefinitely until it is executed or manually cancelled.
AtTheOpening. The order should be filled at the opening of the marketplace or cancelled.
ImmediateOrCancel. The order should be completely or partially filled immediately. If partially filled, the remaining part of the order should be cancelled.
FillOrKill. The order should be filled immediately and entirely or cancelled right away.
GoodTillCrossing. The order will be active until the market enters the auction phase.
GoodTillDate. The order will be active until the date specified in the ExpireDate attribute (unless it is executed or cancelled).
GoodTillTime. The order will be active until a certain time point.
Common Mistakes
Here are some of the common mistakes that developers make when requesting the list of all outstanding and executed orders.
Failing to Specify the Et-App-Key Parameter
If you specify the wrong Et-App-Key parameter or fail to include it in the header altogether, you'll get the following error:
{
"error": "Application key is not defined or does not exist"
}
Specifying the User ID Instead of the Trading Account ID
Another common mistake when making this request is specifying the user ID instead of the user's trading account ID. Doing so will result in the 500 status code and the following error message:
{
"message": "An error occurred while processing your request",
"error": "Unexpected server error"
}
Specifying a Trading Account of a Different User
It's critical to understand that when you use the authorization token of a particular user in this request's header, only this user's orders can be listed. Listing orders of a different user will lead to the 401 error.
{
"Message": "Authorization has been denied for this request."
}
In the following article we provide in-depth coverage of the syntax for this API request.
Last updated