Financial account transactions
Show a table of all transactions for a financial account.
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
Select a language
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
After creating the account session and initializing ConnectJS, you can render the financial account transactions component in the frontend:
financial-account-transactions.js
Select a language
JavaScript
React
No results
// 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:
| Method | Type | Description | |
|---|---|---|---|
setFinancialAccount | string | The ID of the financial account which you want to display a list of transactions for | required |
