Learn about banking information from accounts in a financial institution.
Attributes
The response information in the table below is for account values.
Attribute | Type | Description |
---|---|---|
id | string | Unique ID |
created_at | date-time | Timestamp when account was created in Truv |
updated_at | date-time | Timestamp when account last updated in Truv |
type | string | Account type |
subtype | string | Account subtype |
mask | string | Last 4 digits of account number |
nickname | string | Description of account |
balances | object | List of balance information, see Balances object |
Balances object
View the table below for values from the balances object.
Attribute | Type | Description |
---|---|---|
currency_code | string | Currency |
balance | string | Balance amount |
available_balance | string | Available balance amount |
credit_limit | string | Credit 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"
}
}