# 税取引をエクスポートする 連結アカウントが税取引の要約エクスポートを生成できるようにします。 export tax transactions コンポーネントを使用すると、連結アカウントで、申告に必要な要約税務レポートを生成してダウンロードできます。このコンポーネントを使用するプラットフォームユーザーは、日付範囲とタイムゾーンを選択し、地域の管轄区域向けにフォーマットされた税金データにアクセスできます。Stripe ダッシュボードに直接アクセスする必要はありません。レポートのデータの詳細については、[要約エクスポート](https://docs.stripe.com/tax/reports.md#summarized-exports)をご覧ください。 税取引のエクスポートコンポーネントはプライベートプレビュー版コンポーネントであり、Stripe SDK のプレビュー版を使用する必要があります。このコンポーネントには、`react-connect-js` SDK のバージョン `">=v3.3.29-preview-1"` または `connect-js` SDK のバージョン `">=v3.3.30-preview-1"` が必要です。詳細については、[プライベートプレビュー版コンポーネント](https://docs.stripe.com/connect/supported-embedded-components.md#preview-components)をご覧ください。 ## export tax transactions コンポーネントを実装する [Account セッション](https://docs.stripe.com/api/account_sessions/create.md)の作成時に、`components` パラメーターの `export_tax_transactions` を指定して、商品税コードセレクターコンポーネントを有効にします。 ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -H "Stripe-Version: 2026-05-27.preview; embedded_connect_beta=v2;" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[export_tax_transactions][enabled]=true" ``` アカウントセッションを作成し、[Connect.js を初期化](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions)したら、税取引のエクスポートコンポーネントをフロントエンドに表示します。 #### React ```jsx // Include this React component import { ConnectExportTaxTransactions, ConnectComponentsProvider, } from "@stripe/react-connect-js"; return (

Export Tax Transactions

); ``` ## 早期アクセスをリクエストする (プライベートプレビュー) サインインして、プレビュー版のこの Connect 埋め込みコンポーネントへのアクセスをリクエストします。 Stripe アカウントがない場合は、[こちらから登録](https://dashboard.stripe.com/register)できます。 ## See also - [税務レポート](https://docs.stripe.com/tax/reports.md) - [納税申告](https://docs.stripe.com/tax/filing.md) - [Connect での Tax](https://docs.stripe.com/tax/connect.md) - [ソフトウェアプラットフォームのための Tax](https://docs.stripe.com/tax/tax-for-platforms.md)