Version 4.2.9
about 7 hours ago by Michael Anderlin
Connectors improvements
- NL KNAB: improvement of the redirect URL to include the flowId.
- FR Crédit Agricole: upgrade of AIS auth URL.
- IT
- Banca Popolare di Sondrio (2225 and 2226): deleted because of merge into BPER bank.
- Fix for transactions pagination logic in AIS.
- BE AION: fix for token generation in payment flow.
- FR Boursobank: fix for payment date handling at initiation.
Periodic documentation page fix
The documentation page https://docs.exthand.com/reference/post_ob-pis-payments-periodic was loading forever due to a circular reference. It has now been fiwed.
Transactions & balances fetched date
We have added the field "fetchedDate" to the transaction and balance object. It contains the time with timezone at which we fetched the data.
For balances, it can evolve during the day since we only keep one instance of balance by type (CLBD, ITVA...) a day.
{
"balances": [
{
"balanceType": "string",
"rawBalanceType": "string",
"fetchedDate": "2026-04-29T10:05:47+00:00"
...For transactions, it doesn't change since we are not updating them.
{
"transactions": [
{
"id": "string",
"callId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fetchedDate": "2026-04-29T10:05:47+00:00",
...
