---
title: "List Account Deposits"
method: GET
path: "/accounts/{accountID}/funding/deposits"
tags: ["Deposits"]
---

# List Account Deposits

`GET /accounts/{accountID}/funding/deposits`

Retrieves a list of Account Deposits by accountID.

## Path parameters

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

## Query parameters

- `status` string
- `type` string
- `limit` integer
- `offset` string

## Response `200`

Retrieving a list of Account Deposits was Successful.

- DepositsByUserIDObject
  - `id` string — A unique identifier for the Deposit.
  - `paymentID` string — A unique identifier for the Deposit.
  - `amount` number — The amount of the deposit
  - `currency` CurrencyObject
    - `name` 'USD' — The name of the currency in abbreviation form.
    - `description` string — A custom description about the currency.
    - `symbol` '$' — The currency symbol.
  - `status` DepositStatusObject
    - `id` 0 | 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 5 | -1 — The current status of the user's deposit in integer form.
    - `message` 'STARTED' | 'PENDING' | 'PROCESSING' | 'SUCCESSFUL' | 'FAILED' | 'OTHER' | 'APPROVED' | 'REJECTED' | 'ON_HOLD' | 'PROCESSING' | 'RETURNED' | '-' — The current status of the user's deposit.
    - `updated` string
  - `accountDetails` object
    - `accountID` string — The user's unique account identifier.
    - `accountNo` string — The user's unique account number, that is human readable.
    - `accountType` AccountTypeObject
      - `name` string — The type of account that has been created.
      - `description` string — A custom description of the account type.
    - `accountManagementType` AccountManagementTypeObject
      - `name` 'SELF' | 'ADVISORY' | 'RIA_MANAGED' | 'CUSTODIAL' | 'CUSTODIAL_MANAGED' | 'RESERVED' | 'RETIREMENT_TRADITIONAL_SELF' | 'RETIREMENT_TRADITIONAL_ADVISORY' | 'RETIREMENT_TRADITIONAL_RIA_MANAGED' | 'RETIREMENT_ROTH_SELF' | 'RETIREMENT_ROTH_ADVISORY' | 'RETIREMENT_ROTH_RIA_MANAGED' | 'TRUST_SELF' | 'TRUST_ADVISORY' | 'TRUST_RIA_MANAGED' | 'HSA_SELF' | 'HSA_ADVISORY' | 'HSA_RIA_MANAGED' | 'BUSINESS_SELF' | 'BUSINESS_ADVISORY' | 'BUSINESS_RIA_MANAGED' | 'JOINT_SELF' | 'JOINT_ADVISORY' | 'JOINT_RIA_MANAGED' | 'TRUMP_SELF' — The type of account who has trading authority.
      - `description` string — A custom description of the account management type.
  - `wlpFinTranTypeID` string — A unique identifier to id different type of transactions.
  - `note` string — A way to store a message/comment on the this object.

## Other responses

- `400` — Bad Request

---

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