# 金融口座の取引 金融口座のすべての取引の表を表示します。 金融口座の取引は、連結アカウントの[金融口座](https://docs.stripe.com/api/treasury/financial_accounts.md)に関連付けられた[取引](https://docs.stripe.com/api/treasury/transactions.md)の一覧画面を表示します。 Note: The following is a preview/demo component that behaves differently than live mode usage with real connected accounts. The actual component has more functionality than what might appear in this demo component. For example, for connected accounts without Stripe dashboard access (custom accounts), no user authentication is required in production. このコンポーネントに対するアクセス許可の境界は連結アカウントレベルであり、個々のfinancial accountレベルではありません。この UI は、単一のfinancial accountにアクセスが制限されているユーザーではなく、すべてのfinancial accountsにアクセスできるユーザーに表示する必要があります。 [アカウントセッションを作成する](https://docs.stripe.com/api/account_sessions/create.md)際に、`components` パラメーターで `financial_account_transactions` を指定して、金融口座取引コンポーネントを有効にします。金融口座取引コンポーネントの個々の機能は `financial_account_transactions` で `features` パラメーターを指定することで、有効または無効を設定できます。 ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[financial_account_transactions][enabled]=true" \ -d "components[financial_account_transactions][features][card_spend_dispute_management]=true" ``` アカウントセッションを作成して [ConnectJS を初期化](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions)すると、フロントエンドに金融口座取引コンポーネントを表示できます。 #### JavaScript ```js // Include this element in your HTML const financialAccountTransactions = stripeConnectInstance.create('financial-account-transactions'); financialAccountTransactions.setFinancialAccount('{{FINANCIAL_ACCOUNT_ID}}'); container.appendChild(financialAccountTransactions); ``` この埋め込みコンポーネントは、次のパラメーターに対応します。 #### HTML + JS | メソッド | タイプ | 説明 | | | --------------------- | -------- | ------------------ | -- | | `setFinancialAccount` | `string` | 取引の一覧を表示する金融口座の ID | 必須 | #### React | React プロパティ | タイプ | 説明 | | | ------------------ | -------- | ------------------- | -- | | `financialAccount` | `string` | 取引の一覧を表示する金融口座の ID。 | 必須 |