---
title: "Retrieve Account Transaction Summary"
method: GET
path: "/accounts/{accountID}/summary/transactions"
tags: ["Transactions"]
deprecated: true
---

# Retrieve Account Transaction Summary

`GET /accounts/{accountID}/summary/transactions`

> **Deprecated.**

Retrives an Account Transaction Summary details by accountID.

This API has been deprecated. Instead, use List Account Transactions to retrieve historical Transactions. To retrieve orders, use List Account historical Orders.

## Path parameters

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

## Response `200`

Retrieving Account Transaction Summary details was Successful.

- TransactionSummaryRes
  - `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 — Time of last update.
  - `transactions` TransactionObj[] — An Array of transactions.
    - `orderId` string — A unique DriveWealth order identifier created when an order is placed.
    - `orderNo` string — A unique, human-readable DriveWealth order number.
    - `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`.
    - `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.
    - `instrumentType` 'EQUITY' | 'ALTERNATIVE_ASSET' | 'MUTUAL_FUND' | 'DEBT' | 'OPTION' | 'CRYPTO' — The classification of the instrument.
    - `cumQty` number — The amount of shares currently being transacted; larger orders may execute in chunks.
    - `orderStatus` 0 | 1 | 2 | 4 | 6 | 7 | 8 — The current status of the order, represented as a number.
    - `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.
    - `limitPrice` number — The price set for the limit order.
    - `stopPrice` number — The stop price of a limit order.
    - `executedPrice` number — The price at which the order was executed.
    - `side` 'B' | 'S' | 'BUY_OPEN' | 'BUY_CLOSE' | 'SELL_OPEN' | 'SELL_CLOSE' — The side of the order.
    - `createdWhen` string
    - `updatedWhen` string — NEEDS DESCRIPTION
    - `updatedReason` string — A reason for the update.
    - `commission` number — Commission for the transaction if applicable.
    - `commissionDesc` string — A short description about the commission.
    - `isoTimeRestingOrderExpires` string — The time when the limit order expires.
    - `executedWhen` string — The time when the transaction was executed.
    - `realizedPL` number — Realized profit and loss for position.
    - `orderCashAmt` number — The amount of cash requested for an order (fractional shares only).
    - `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.
    - `currency` 'USD' — The name of the currency in abbreviation form.

---

[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)
