Learn about account details in a financial institution.
Attributes
The information in this table is for the financial institution response.
Attribute | Type | Description |
---|---|---|
accounts | array of objects | List of accounts, see Accounts object |
Accounts object
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 |
provider | string | Data provider ID |
provider_name | string | Data provider name |
balances | object | List of balance information, see Balances object |
numbers | object | List of account numbers, see Numbers 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 |
Numbers object
Each object has the type (ACH, RPT, OTHERS) and nested values from the table:
Attribute | Type | Description |
---|---|---|
account_number | string | A unique identifier assigned to a financial account for tracking and managing transactions, providing essential information for financial operations. |
routing_number | string | A unique identifier for a financial institution. It is used to route and process transactions, ensuring accurate and secure transfers of funds. |
is_tokenized_account_number | boolean | Indicates whether the account number has been tokenized by the institution, providing an additional layer of security for transactions. |
Endpoints
Use the endpoint below for account information.
Example response
The sample below is a JSON response for the endpoint.
{
"accounts": [
{
"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",
"is_open": true,
"balances": {
"currency_code": "USD",
"balance": "100.00",
"available_balance": "50.99",
"credit_limit": "200.00"
},
"provider": "truv",
"provider_name": "Truv Bank",
"numbers": {
"ACH": [
{
"account_number": "16002600",
"routing_number": "123456789",
"is_tokenized_account_number": true
}
],
"RTP": [
{
"account_number": "16002600",
"routing_number": "123456789",
"is_tokenized_account_number": true
}
],
"OTHERS": [
{
"account_number": "16002600",
"routing_number": "123456789",
"is_tokenized_account_number": true
}
]
}
}
]
}