Retrieve auth data
The endpoint retrieves a list of connected financial accounts, including their bank identification numbers.
Query parameters
Comma-separated list of account IDs to filter
Response
Example response
{
"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",
"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
}
]
}
}
]
}Changes
Changed in 2 of the 11 revisions of this API.23
- ○
the
accounts/items/balances/available_balanceresponse's property pattern^-?\d{1,10}\.\d{2}$was added for the status200response-property-pattern-added
- ○
the
accounts/items/balances/balanceresponse's property pattern^-?\d{1,10}\.\d{2}$was added for the status200response-property-pattern-added
- ○
the
accounts/items/balances/credit_limitresponse's property pattern^-?\d{1,10}\.\d{2}$was added for the status200response-property-pattern-added
- ○
- ▲
the response property
accounts/items/balances/currency_codebecame nullable for the status200response-property-became-nullable
- ▲
the response property
accounts/items/maskbecame nullable for the status200response-property-became-nullable
- ▲