v1

latestOpenAPI 3.0.22026-07-24113565544.0 KB
Accounts

Retrieve Account Cash

Retrieves an Account Cash details by accountID.

get/accounts/{accountID}/summary/money

Path parameters

accountIDstring required

The user's unique account identifier.

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

Response

Retrieving Money details 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

Timestamp of the last time the deposit was updated.

Example response

{
  "accountID": "cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759",
  "accountNo": "DWBG000052",
  "tradingType": "CASH",
  "updated": "2021-04-23T18:41:32.440Z",
  "cash": {
    "cashBalance": -12043.23,
    "cashSettlement": [
      {
        "utcTime": "2021-04-26T13:30:00.001Z",
        "cash": 439.7
      }
    ],
    "cashPendingSettlement": 500
  },
  "payments": {
    "buyingPower": {
      "pendingDepositsAmountAvailable": 20802.71
    },
    "redemptions": {
      "amountWithheldFromRedemptions": 60
    }
  }
}