The IntendedReport Object in Detail
In order to offer different types of reports, the intended report(s) need to be known in order to refresh only the needed data.
IntendedReport
{
"type": Enum<'ACCOUNT_INFOS', 'BALANCE_OVER_TIME' ,'BALANCES' ,'CATEGORIZED_TRANSACTIONS' ,'EXPENSE_CATEGORIES', 'RECURRING_TRANSACTIONS'>
}
type InsightType, required
A type of report to be generated.
ACCOUNT_INFOS- shows all details about an account, see 'ACCOUNT_INFOS'BALANCE_OVER_TIME- shows the changes to an account balance over time, see 'BALANCE_OVER_TIME'BALANCES- shows the latest account balances, see 'BALANCES'CATEGORIZED_TRANSACTIONS- shows each transaction with the respective categories, see 'CATEGORIZED_TRANSACTIONS'EXPENSE_CATEGORIES- shows grouped transactions by category, see 'EXPENSE_CATEGORIES'RECURRING_TRANSACTIONS- shows recurring transactions, see 'RECURRING_TRANSACTIONS'
Example Object
{
"type": "BALANCES"
}