This endpoint allows you to retrieve a list of balances for the required period for a given business.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/statements?offset=50&limit=50&start_date=2019-08-24&end_date=2019-08-24' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'OK
Response
{ "count": 100, "next": "offset=50&limit=50", "previous": "offset=0&limit=50", "start_date": "2024-01-01", "end_date": "2024-01-31", "currency": "AUD", "opening_balance": 1000, "closing_balance": 1000, "daily_balances": [ { … } ] }