Transactions
Payments data (that is, transactions), is likely to have a central role in your application. It does in our API too, so much that we have a product dedicated to it.
Cheatsheet
Get transactions from a bank account you’ve enrolled: GET /accounts/:id/transactions
Transaction parameters
All transactions endpoints support query parameters, such as:
fromDate
, string, format: YYYYMMDD, UTC
toDate
, string, format: YYYYMMDD, UTC
limit, offset
, integer, to paginate the result
pending
, true/false, if you are looking for authorization (true), or settlement (false)
For instance, a request may look like:
GET /accounts/:id/transactions?fromDate=20220501&toDate=20220508
The response of the /transactions
endpoint is a JSON array.