Accounts

Learn about banking information from accounts in a financial institution.

Attributes

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.

{
  "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"
  }
}