Retrieve a Bank Account
Retrieves the details of an existing customer's bank account. Supply the unique customer id and unique bank account id for that customer from the customer list and bank account list respectively.
Path parameters
The id of the customer to return.
The id of the bank account to return.
Query parameters
Unreconciled bank statements are statements where the difference between the parsed opening and closing balances is not explained by the sum of the parsed transaction amounts. Statements are typically unreconciled if the uploaded document has poor quality or is missing some of its original pages. It can also happen when the parsing models fail to parse and extract all relevant data. If this parameter is set to False, unreconciled bank statements will be excluded from the credit insights. This parameter defaults to True, keeping all documents included.
Response
Successfully retrieved bank account.
Example response
{
"data": {
"id": "0efae611-b3eb-4b84-8ed0-a4e92ad3bf4b",
"account_number": "123456789",
"account_type": "PERSONAL",
"account_name": "Chase Premium Checking",
"end_date": "2022-07-25",
"start_date": "2022-06-25",
"guid": "64b1c962-5659-4b87-8e88-b5dce41c7c0c",
"institution_name": "Bank of America"
},
"metadata": {
"included_data_sources": {
"documents": [
{
"document_id": "b3de84cf-97aa-4321-a223-51640d5d8fca"
}
],
"open_banking": [
{
"open_banking_data_id": "e959ed48-a9e4-44f3-a6f8-b9dddd21f27c"
}
]
},
"excluded_data_sources": {
"documents": [
{
"document_id": "fd7abd7d-5d62-42d0-b49e-62eae1fd4e22",
"exclusion_reason": "UNRECONCILED_BANK_ACCOUNT"
}
],
"open_banking": [
{
"open_banking_data_id": "920b148f-db30-46fe-8da9-3de2c9e55b04"
}
]
}
}
}