Returns a list of Financial Connections Transaction
objects.
Parameters
- accountstringRequired
The ID of the Financial Connections Account whose transactions will be retrieved.
- transacted_
atobject A filter on the list based on the object
transacted_
field. The value can be a string with an integer Unix timestamp, or it can be a dictionary with the following options:at - transacted_at.
gtinteger Minimum value to filter by (exclusive)
- transacted_at.
gteinteger Minimum value to filter by (inclusive)
- transacted_at.
ltinteger Maximum value to filter by (exclusive)
- transacted_at.
lteinteger Maximum value to filter by (inclusive)
- transaction_
refreshobject A filter on the list based on the object
transaction_
field. The value can be a dictionary with the following options:refresh - transaction_refresh.
afterstringRequired Return results where the transactions were created or updated by a refresh that took place after this refresh (non-inclusive).
More parameters
- ending_
beforestring A cursor for use in pagination.
ending_
is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting withbefore obj_
, your subsequent call can includebar ending_
in order to fetch the previous page of the list.before=obj_ bar - limitinteger
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
- starting_
afterstring A cursor for use in pagination.
starting_
is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending withafter obj_
, your subsequent call can includefoo starting_
in order to fetch the next page of the list.after=obj_ foo
Returns
A dictionary with a data
property that contains an array of up to limit
Transaction
objects, starting after transaction starting_
. Each entry in the array is a separate Transaction
object. If no more transactions are available, the resulting array will be empty.
{ "object": "list", "url": "/v1/financial_connections/transactions", "has_more": false, "data": [ { "id": "fctxn_1NpHiT2eZvKYlo2CZFvnM3HJ", "object": "financial_connections.transaction", "account": "fca_1NpHiT2eZvKYlo2C6pRwOFjr", "amount": 300, "currency": "usd", "description": "Rocket Rides", "livemode": false, "status": "posted", "status_transitions": { "posted_at": 1694467941, "void_at": null }, "transacted_at": 1694467941, "transaction_refresh": "fctxnref_OcWmGrWptAdJ2bmpYE2P0Hws", "updated": 1694467941 } ]}