# 入金リスト フィルターを適用できる入金のリストを表示します。 入金リストは、連結アカウントへの入金のリストを表示します。 > このコンポーネントは、[入金コンポーネント](https://docs.stripe.com/connect/supported-embedded-components/payouts.md)に含まれる UI のサブセットを描画します。 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. [アカウントセッションの作成](https://docs.stripe.com/api/account_sessions/create.md)時に、`components` パラメーターで `payouts_list` を指定して、入金リストを有効にします。 ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[payouts_list][enabled]=true" ``` アカウントセッションを作成して [ConnectJS を初期化](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions)すると、フロントエンドで入金リストコンポーネントを表示できます。 #### JavaScript ```js // Include this element in your HTML const payoutsList = stripeConnectInstance.create('payouts-list'); container.appendChild(payoutsList); ```