# 税金のしきい値の監視 連結アカウントで消費税のしきい値を追跡できるようにします。 課税しきい値監視コンポーネントを使用すると、連結アカウントは Stripe で処理した支払いに対して見込まれる売上税徴収要件を追跡できます。連結アカウントは、Stripe が監視するすべての課税場所の売上額と合計金額を表示することで、このコンポーネントを操作します。このコンポーネントは[ソフトウェアプラットフォーム](https://docs.stripe.com/tax/tax-for-platforms.md)に適しているため、連結アカウントは税金を徴収する義務があります。 プラットフォームに Stripe Tax を導入する場合は、該当する場所の連結アカウントの[税務当局への登録](https://docs.stripe.com/tax/registering.md)に関する情報を収集する必要があります。連結アカウントは、プラットフォームに税務登録を追加する前に、税務当局に登録する必要があります。プラットフォームの税金を正しく計算して徴収するには、連結アカウントの税務登録を収集する必要があります。 Stripe がユーザーの納税義務を監視する方法について、詳細は[納税義務](https://docs.stripe.com/tax/monitoring.md)の監視をご覧ください。組み込みコンポーネントはダッシュボードとは異なり、たとえば[帰属先不明の収入](https://docs.stripe.com/tax/monitoring.md#handling-unattributed-revenue)は含まれません。 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. ## 要件 - 実装では、[Connect での Tax](https://docs.stripe.com/tax/connect.md) の[ソフトウェアプラットフォームのためのガイド](https://docs.stripe.com/tax/tax-for-platforms.md)に従う必要があります。これは、連結アカウントに税金を徴収する義務があることを示します。 - まだ行っていない場合は、[税金設定コンポーネント](https://docs.stripe.com/connect/supported-embedded-components/tax-settings.md)と[税務登録コンポーネント](https://docs.stripe.com/connect/supported-embedded-components/tax-registrations.md)をレンダリングします。連結アカウントに税務コンプライアンス管理を提供するには、税金設定コンポーネントと税務登録コンポーネントの両方が必要です。 ## 課税しきい値の監視コンポーネントを導入する [アカウントセッションの作成](https://docs.stripe.com/api/account_sessions/create.md)時に、`components` パラメーターで `tax_threshold_monitoring` を指定して、税金しきい値の監視を有効にします。 ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[tax_threshold_monitoring][enabled]=true" ``` アカウントセッションを作成して、[ConnectJS を初期化](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions)すると、フロントエンドに税金しきい値コンポーネントを表示できます。 #### React ```jsx // Include this React component import { ConnectTaxThresholdMonitoring, ConnectComponentsProvider, } from "@stripe/react-connect-js"; return (

Tax Threshold Monitoring

); ``` #### HTML + JS | 方法 | タイプ | 説明 | デフォルト | | --------------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------- | | `setDisplayCountries` | `string[]` | [2 文字の国コード](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)の配列。連結アカウントに表示する、しきい値の監視場所の[選択対象](https://docs.stripe.com/api/tax/registrations/object.md#tax_registration_object-country_options)を制限します。 | 未定義 (すべての国を許可) | #### React | React プロパティ | タイプ | 説明 | デフォルト | 必須、または任意 | | ------------------ | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------- | -------- | | `displayCountries` | `string[]` | [2 文字の国コード](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)の配列。連結アカウントに表示する、しきい値の監視場所の[選択対象](https://docs.stripe.com/api/tax/registrations/object.md#tax_registration_object-country_options)を制限します。 | 未定義 (すべての国を許可) | 任意 | ## 早期アクセスをリクエストする (Private preview) サインインするか、[Stripeに登録](https://dashboard.stripe.com/register)して、このConnect組み込みコンポーネントのプレビューへのアクセスをリクエストします。 ## See also - [Connect での Tax](https://docs.stripe.com/tax/connect.md) - [ソフトウェアプラットフォームのための TAX](https://docs.stripe.com/tax/tax-for-platforms.md) - [税金設定コンポーネント](https://docs.stripe.com/connect/supported-embedded-components/tax-settings.md) - [納税登録コンポーネント](https://docs.stripe.com/connect/supported-embedded-components/tax-registrations.md)