Skip to content
Create account
or
Sign in
The Stripe Docs logo
/
Ask AI
Create account
Sign in
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Developer tools
Get started
Payments
Finance automation
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Overview
Get started with Connect
Integration fundamentals
Example integrations
Onboard accounts
Configure account Dashboards
    Get started with Connect embedded components
    Customize Connect embedded components
    Supported Connect embedded components
      Available Components
      Account management
      Account onboarding
      Balances
      Documents
      Financial account
      Financial account transactions
      Issuing card
      Issuing cards list
      Notification banner
      Payment details
      Payments
      Payouts
      Payouts list
      Tax registrations
      Tax settings
      Preview components
      App install
      App viewport
      Capital financing
      Capital financing application
      Capital financing promotion
      Disputes for a payment
      Export Tax Transactions
      Payment method settings
      Reporting chart
    Stripe Dashboard customization
    Platform controls for Stripe Dashboard accounts
    Express Dashboard
Accept payments
Pay out to accounts
Manage your Connect platform
Tax forms for your Connect platform
Work with connected account types
HomePlatforms and marketplacesConfigure account DashboardsSupported Connect embedded components

Financial account transactions

Show a table of all transactions for a financial account.

Copy page

Financial account transactions renders the view of a list of transactions associated with a financial account for your connected accounts.

The permission boundary for this component is at the connected account level, not at the individual financial account level. This UI should be shown to users that have access to all financial accounts, not to users that have restricted access to a single financial account.

When creating an Account Session, enable the financial account transactions component by specifying financial_account_transactions in the components parameter. You can enable or disable individual features of the financial account component by specifying the features parameter under financial_account_transactions.

Command Line
cURL
curl https://api.stripe.com/v1/account_sessions \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d account=
{{CONNECTED_ACCOUNT_ID}}
\ -d "components[financial_account_transactions][enabled]"=true \ -d "components[financial_account_transactions][features][card_spend_dispute_management]"=true

After creating the account session and initializing ConnectJS, you can render the financial account transactions component in the frontend:

financial-account-transactions.js
JavaScript
// Include this element in your HTML const financialAccountTransactions = stripeConnectInstance.create('financial-account-transactions'); financialAccountTransactions.setFinancialAccount('{{FINANCIAL_ACCOUNT_ID') container.appendChild(financialAccountTransactions);

This embedded component supports the following parameters:

MethodTypeDescription
setFinancialAccountstringThe ID of the financial account which you want to display a list of transactions forrequired
Was this page helpful?
YesNo
Need help? Contact Support.
Join our early access program.
Check out our changelog.
Questions? Contact Sales.
LLM? Read llms.txt.
Powered by Markdoc