Generate Cash Flow Statement (דוח תזרים מזומנים)
Generate a Cash Flow Statement (indirect method) for the requested period, showing operating/investing/financing activities, opening/closing cash, and net change in cash. Computed from dated JournalEntry movements (never from the stale Account.currentBalance snapshot) — two calls with different date ranges return different figures.
Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.
In: header
Query Parameters
Period start date (ISO 8601). Defaults to Jan 1 of current year.
Period end date (ISO 8601). Defaults to today.
Fiscal year (alternative to date range)
Hide accounts with zero balance and zero movements
Trial Balance variant: combined (3-column), balances, or movements
Value in
- "combined"
- "balances"
- "movements"
Filter by account category
Value in
- "ASSET"
- "LIABILITY"
- "EQUITY"
- "REVENUE"
- "EXPENSE"
Display locale for report line labels (Cash Flow section item names). Defaults to Hebrew.
Value in
- "he"
- "en"
Header Parameters
Response Body
application/json
curl -X GET "https://example.com/reports/cash-flow" \ -H "X-Business-Id: string"{ "businessId": "123e4567-e89b-12d3-a456-426614174000", "startDate": "2026-01-01", "endDate": "2026-12-31", "openingCash": 50000, "operatingActivities": { "sectionName": "Operating Activities", "items": [ { "item": "Net Income", "amount": 45000, "accountCode": "4000" } ], "total": 32000 }, "investingActivities": { "sectionName": "Operating Activities", "items": [ { "item": "Net Income", "amount": 45000, "accountCode": "4000" } ], "total": 32000 }, "financingActivities": { "sectionName": "Operating Activities", "items": [ { "item": "Net Income", "amount": 45000, "accountCode": "4000" } ], "total": 32000 }, "netChangeInCash": 32000, "closingCash": 82000, "isReconciled": true, "generatedAt": "2026-12-31T23:59:59.000Z"}
