Accounts

Learn about banking information from accounts in a financial institution.

Attributes

The information in this table is for the accounts response.

AttributeTypeDescription
countintegerCount
nexturiNext
previousuriPrevious
resultsarray of objectsList of accounts, see Accounts object

Accounts object

The response information in the table below is for account values.

AttributeTypeDescription
idstringUnique ID
created_atdate-timeTimestamp when account was created in Truv
updated_atdate-timeTimestamp when account last updated in Truv
typestringAccount type
subtypestringAccount subtype
maskstringLast 4 digits of account number
nicknamestringDescription of account
balancesobjectList of balance information, see Balances object

Balances object

View the table below for values from the balances object.

AttributeTypeDescription
currency_codestringCurrency
balancestringBalance amount
available_balancestringAvailable balance amount
credit_limitstringCredit limit

Endpoints

Use the endpoint below for account balance information.

Example response

The sample below is a JSON response for the endpoint.

{
  "count": 0,
  "next": "string",
  "previous": "string",
  "results": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "created_at": "2022-05-04T11:30:00Z",
      "updated_at": "2022-05-04T12:00:00Z",
      "type": "CHECKING",
      "subtype": "MONEY_MARKET",
      "mask": "6789",
      "nickname": "My account",
      "balances": {
        "currency_code": "USD",
        "balance": "100.00",
        "available_balance": "50.99",
        "credit_limit": "200.00"
      }
    }
  ]
}