Quickstart
See Teal in action by building a real cash flow report.
Before following this guide, complete the steps in Initial Setup.
Create an Instance
- Select a chart of accounts
Every Instance needs to have a Chart of Accounts (CoA). We provide you with default templates that you can use, which you can access in the Developer Portal or via the List all Chart of Accounts Templates endpoint.
You can edit these templates in the Developer Portal or via the API. You’ll likely want to do this later when you get to creating a tailored chart of accounts based on your users’ unique needs.
- Create the Instance
Call the Create Instance endpoint. You can choose your parameters, but here are some suggestions:
- Use the
coa_template_id
that you copied from the previous step. - Set your
entries_start
date to2024-01-01T00:00:00Z
. This date indicates the beginning of the business’ activity, or the migration date from another accounting system. - Set your
subscription
totier3
. More on subscription tiers can be found hereYou won’t be able to import any transactions or run any reports that have dates before theentries_start
date.
You can read more about creating new Instances in the Instances overview.
Import transactions
- Create a ledger
Create a ledger representing the bank account by calling the Create Ledger endpoint. Set the financial_account_type
to bank_account
.
- Create a source account
Create a Transaction Source Account and link it to the ledger using the ledger_id
.
- Manually import transactions
Manually import transactions via the Create Transactions endpoint. For each transaction, we’ll include an amount
in a 2 decimal float, a datetime
of when the transaction occurred, a description
telling us about the transaction, and an id
to prevent duplicate transactions.
We encourage you to prepare and submit a diverse set of banking transactions so that you can see Teal in action.
You can also use our native Plaid integration to automate the process of importing transactions to Teal.
Generate a cash flow report
Call the Get Cash Flow Report and select a start_date
and an end_date
.
Interpreting the cash flow report
The cash flow report will analyze all cash-bearing ledgers that have the report_cash_flow
parameter. Here’s how to interpret the report object:
- The
cash-flow-report
endpoint will returnstarting_debit_balance
andending_debit_balance
. These are the total amounts of cash the business had across all financial account ledgers marked with thereport_cash_flow
parameter, on the report’sstart_date
andend_date
, respectively. - The
starting_balances
andending_balances
objects will break downstarting_debit_balance
andending_debit_balance
by financial account ledger. - The
cash_flow_ledgers
object contains the ledgers that contributed to changing the total cash balance over the reporting period and by how much. It also reports on the individual line items and journal entries that contributed to the change, if you want to provide the ability to provide further detail to the user. - The changes reported by the
cash_flow_ledgers
object will equal exactly the difference between thestarting_debit_balance
andending_debit_balance
amounts. - For more information on how to present this report to the end user in your front-end, check out our cash flow report guide.