v1

latestOpenAPI 3.0.22026-07-24113565544.0 KB
Orders

List Account resting Orders

Retrives a list of Account Orders by accountID. The orders returned will all be currently pending Orders that are awaiting a fill or cancellation.

get/accounts/{accountID}/summary/orders

Path parameters

accountIDstring required

The user's unique account identifier.

Example:cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759

Response

Retrieving a list of Account Orders was Successful.

accountIDstring

The user's unique account identifier.

accountNostring

The user's unique account number, that is human readable.

tradingType'CASH' | 'MARGIN'

The type of trading the account will participate in.

updatedstring

The time of the last update to the Pending Orders Object.

Example response

{
  "accountID": "cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759",
  "accountNo": "DWBG000052",
  "tradingType": "CASH",
  "updated": "2021-04-23T18:41:32.440Z",
  "orders": [
    {
      "orderID": "IC.0e352bb7-9869-4233-9861-9673544efedd",
      "orderNo": "ICDU023727",
      "createdWhen": "2022-12-11T22:28:21.810Z",
      "symbol": "MS",
      "cumQty": 0.7219,
      "orderStatus": "2",
      "orderType": "1",
      "orderQty": 0.7219,
      "side": "B",
      "stopPrice": 200,
      "ISIN": "US023135BX34",
      "salesCredit": {
        "currency": "USD",
        "amount": 14
      },
      "instrumentType": "EQUITY"
    }
  ]
}