I have bank statements with 1000s of entries. As a result, I want to be able to programatically explain these transactions.
At the moment I have to make 1 API request for every single explanation, which when combined with the rate limits is just a painful experience.
It would be great to be able to provide an array of bank transaction explanations in one API request.
E.g.
POST https://api.freeagent.com/v2/bank_transaction_explanations
{"bank_transaction_explanations": [
{
"bank_transaction": "...",
"category": "...",
...
},
{
"bank_transaction": "...",
"category": "...",
...
},
...
]}