Retrieve a Transaction
GET / v1 / financial_connections / transactions /:id
Retrieves the details of a Financial Connections Transaction
Parameters
No parameters.
Returns
Returns a Transaction object if a valid identifier was provided, and raises an error otherwise.
Response
{ "id": "fctxn_1MwVKd2eZvKYlo2ChNw2UxSa", "object": "financial_connections.transaction", "account": "fca_1MwVKd2eZvKYlo2CnlgoF3I4", "amount": 300, "currency": "usd", "description": "Rocket Rides", "livemode": false, "status": "posted", "status_transitions": { "posted_at": 1681412239, "void_at": null }, "transacted_at": 1681412239, "transaction_refresh": "fctxnref_NhvAgiKSFDg9jOe6eIlj41X5", "updated": 1681412239}
List Transactions
GET / v1 / financial_connections / transactions
Returns a list of Financial Connections Transaction objects.
Parameters
- account string Required The ID of the Financial Connections Account whose transactions will be retrieved.
- transacted _ at object A filter on the list based on the object
transacted_atfield. The value can be a string with an integer Unix timestamp, or it can be a dictionary with the following options: - transaction _ refresh object A filter on the list based on the object
transaction_refreshfield. The value can be a dictionary with the following options:
More parameters
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit Transaction objects, starting after transaction starting_after. Each entry in the array is a separate Transaction object. If no more transactions are available, the resulting array will be empty.
Response
