---
title: "List Account resting Orders"
method: GET
path: "/accounts/{accountID}/summary/orders"
tags: ["Orders"]
---

# List Account resting Orders

`GET /accounts/{accountID}/summary/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.

## Path parameters

- `accountID` string, required — The user's unique account identifier.

## Response `200`

Retrieving a list of Account Orders was Successful.

- PendingOrders — A list of pending orders.
  - `accountID` string — The user's unique account identifier.
  - `accountNo` string — The user's unique account number, that is human readable.
  - `tradingType` 'CASH' | 'MARGIN' — The type of trading the account will participate in.
  - `updated` string — The time of the last update to the Pending Orders Object.
  - `orders` object[] — An array that holds a list of currently pending orders.
    - `orderID` string — A unique DriveWealth order identifier created when an order is placed.
    - `orderNo` string — A unique, human-readable DriveWealth order number.
    - `createdWhen` string
    - `symbol` string, nullable — The ticker symbol of the Instrument. Debt Instruments and Global Mutual Funds do not have symbols and are referred to buy their `instrumentID` or `ISIN`.
    - `cumQty` number — The amount of shares currently being transacted; larger orders may execute in chunks.
    - `orderStatus` '0' | '1' | '2' | '3' | '4' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C' — The current status of the order.
    - `orderType` '0' | '1' | '2' | '3' | '4' | '6' | '7' | 'm' — The type of order that is placed.
    - `orderQty` number — The amount of the instrument in shares.
    - `isoTimeRestingOrderExpires` string — The time when the limit order expires.
    - `limitPrice` number — The price set for the limit order.
    - `side` 'B' | 'S' | 'BUY_OPEN' | 'BUY_CLOSE' | 'SELL_OPEN' | 'SELL_CLOSE' — The side of the order.
    - `orderCashAmt` number — The amount of cash requested for an order (fractional shares only).
    - `stopPrice` number — The stop price of a limit order.
    - `ISIN` string — An `International Securities Identification Number` (ISIN) uniquely identifies a security. Its structure is defined in ISO 6166. ISINs are commonly used when an Instrument does not have a `symbol`, such as Debt Instruments and Global Mutual Funds.
    - `salesCredit` SalesCredit — If set, the unit price will be marked up or marked down based on the prescribed amount. Only applicable to Orders for Debt Instruments.
      - `currency` 'USD' — The name of the currency in abbreviation form.
      - `amount` integer — The sales credit amount in cents.
    - `instrumentType` 'EQUITY' | 'ALTERNATIVE_ASSET' | 'MUTUAL_FUND' | 'DEBT' | 'OPTION' | 'CRYPTO' — The classification of the instrument.

---

[API](https://skmtc.net/drivewealth/apis/authentication-apis.md) · [All operations](https://skmtc.net/drivewealth/apis/authentication-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/drivewealth/authentication-apis/revisions/9fced6d0ac41/schema)
