From the Bank Accounts endpoint, you can retrieve information about all of the bank accounts for a connection.
The Bank Account Object
Property | Type | Description |
---|---|---|
id | string | A Rutter designated ID for a bank account of this business. It always will be in UUID format |
institution_name | string | The institution of the bank account. |
account_id | string | Unique platform identifier for the bank account. |
balance | number | Balance of the bank account. |
available_balance | number | Total available balance in the bank account (based on any overdraft limits or pending transactions) |
limit | number | Over-draft limit of the bank account. |
currency | string | The ISO-4217 currency code |
account_name | string | Name of the bank account |
updated_at | string | The last ISO 8601 updated date |
{
"id": "0f22c735-57dd-4954-9084-68e41c17b573"
"institution_name": "TD Bank",
"account_id": "blgvvBlXw3cq5GMPwqB6s6q4dLKB9WcVqGDGo",
"balance": 110,
"available_balance": 100,
"limit": 200,
"currency": "USD",
"account_name": "Rutter Checking",
"updated_at": "2021-03-09T10:18:29.985Z"
}