List Transactions 

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_at field. The value can be a string with an integer Unix timestamp, or it can be a dictionary with the following options:

  • transaction_refreshobject

    A filter on the list based on the object transaction_refresh field. The value can be a dictionary with the following options:

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_after. Each entry in the array is a separate Transaction object. If no more transactions are available, the resulting array will be empty.

GET /v1/financial_connections/transactions
curl -G https://api.stripe.com/v1/financial_connections/transactions \
-u "sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2:" \
-d account=fca_1NpHiT2eZvKYlo2C6pRwOFjr \
-d limit=3
Response
{
"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
}
]
}

Tax Calculations 

A Tax Calculation allows you to calculate the tax to collect from your customer.

Related guide: Calculate tax in your custom payment flow

Tax Registrations 

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

Tax Transactions 

Tax Settings 

You can use Tax Settings to manage configurations used by Stripe Tax calculations.

Related guide: Using the Settings API