Returning most recent explanations

Hello -

Anyone know why

https://api.freeagent.com/v2/bank_transaction_explanations?bank_account=630925?page=1

Is returning transactions from 2019 - despite there being several transactions just this week?

I am sending via Postman

If I add from_date say 2024-12-01 - I get this months transactions up to the page limit. But to_date (Today) is ignored

So confused.

You seem to have two ‘?’. The first time you want a ‘?’ to denote the next values are query parameters, but all query parameters should be separated by ‘&’, not ‘?’. So the correct URI would be https://api.freeagent.com/v2/bank_transaction_explanations?bank_account=630925&page=1

:man_facepalming:

Thanks. Sometimes it’s the most obvious things….