I’ve been trying to query the cashflow API to build some projections and I’m consistently getting “0”. Within the web application I can see cashflow as expected and I have confirmed that /company returns the correct company.
For example, the following query returns the below JSON
cashflow?from_date=2023-08-20&to_date=2023-09-19
{‘cashflow’: {‘from’: ‘2023-08-20’, ‘to’: ‘2023-09-19’, ‘incoming’: {‘months’: [{‘month’: 8, ‘year’: 2023, ‘total’: 0}, {‘month’: 9, ‘year’: 2023, ‘total’: 0}], ‘total’: 0}, ‘outgoing’: {‘months’: [{‘month’: 8, ‘year’: 2023, ‘total’: 0}, {‘month’: 9, ‘year’: 2023, ‘total’: 0}], ‘total’: 0}, ‘balance’: 0}}
any suggestions on why this might be?