Get all Bank Account Information in Google Sheets™ using the FINICOM_GET_ACCOUNTS formula
Get all bank account information in Google Sheets™ using the FINICOM_GET_ACCOUNTS formula in Finicom.
FINICOM_GET_ACCOUNTS
The FINICOM_GET_ACCOUNTS formula lists all bank accounts connected to your Finicom account. It provides detailed information about each account including balances, account types, and more.
Syntax
=FINICOM_GET_ACCOUNTS(columns, includeHeaders)Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
columns | string[] or string | No | All columns | Array of column names to include in output |
includeHeaders | boolean | No | true | Whether to include column headers as first row |
Available Columns
Account ID- Unique identifier for the accountInstitution- Name of the financial institutionAccount Name- Display name of the accountLast 4 Digits- Last 4 digits of the account numberAccount Type- Type of account (e.g., checking, savings)Current Balance- Current balance in the accountAvailable Balance- Available balance that can be withdrawnCurrency- Currency code of the accountLast Updated- Timestamp of last account update
Examples
Basic Usage
Get all account information with default headers:
=FINICOM_GET_ACCOUNTS()Select Specific Columns
Get only account names and balances:
=FINICOM_GET_ACCOUNTS({"Account Name", "Current Balance", "Currency"})Without Headers
Get specific columns without header row:
=FINICOM_GET_ACCOUNTS({"Account Name", "Current Balance", "Currency"}, FALSE)Tips
- If no columns are specified, all available columns will be included
- Column names are case-sensitive
- The formula returns a dynamic array that can expand based on the number of accounts
- Results are automatically updated when account information changes
Related
- FINICOM_GET_ACCOUNT - Get details for a specific account
- FINICOM_GET_TRANSACTIONS - Fetch transaction data