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 - transaction_
refreshobject A filter on the list based on the object
transaction_
field. The value can be a dictionary with the following options:refresh
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
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 } ]}
A Tax Calculation allows you to calculate the tax to collect from your customer.
Related guide: Calculate tax in your custom payment flow
A Tax Registration
lets us know that your business is registered to collect tax on payments within a region, enabling you to automatically collect tax.
Stripe doesn’t register on your behalf with the relevant authorities when you create a Tax Registration
object. For more information on how to register to collect tax, see our guide.
Related guide: Using the Registrations API
A Tax Transaction records the tax collected from or refunded to your customer.
Related guide: Calculate tax in your custom payment flow
You can use Tax Settings
to manage configurations used by Stripe Tax calculations.
Related guide: Using the Settings API