...
Detailed endpoint description can be found here: Transaction Refresh Endpoint
Transaction update
Some banks might change the transaction data after transaction is processed in bank’s systems. After we receive new transaction data from bank, we update it and set new value for lastUpdated
column.
To get only the fresh transactions (not downloaded yet or updated ones), good approach is to use updatedFrom
query parameter and store lastUpdated
value of the latest downloaded transaction. Next time you should call the endpoint with stored value plus 1 milisecondmillisecond.
Only new transactions
If you do not want to get updates described above, then you can use query parameter createdFrom
(ISO timestamp) and store value from field createdAt
of latest transaction. Next time you should call the endpoint with stored value plus 1 millisecond.
Get Transaction List
Transaction list for specific bank account can be obtained using the endpoint described in detail here: Bank Account Transactions
...