コンテンツにスキップ
アカウントを作成
または
サインイン
Stripe ドキュメントのロゴ
/
AI に質問する
アカウントを作成
サインイン
始める
支払い
売上
プラットフォームおよびマーケットプレイス
資金管理
開発者向けリソース
概要
バージョン管理
変更ログ
    概要
    Clover
    Basil
    Acacia
    以前のバージョン
API バージョンのアップグレード
SDK バージョンをアップグレードする
Essentials
SDK
API
テスト
Stripe CLI
サンプルプロジェクト
ツール
Stripe ダッシュボード
ワークベンチ
開発者ダッシュボード
Stripe Shell
Visual Studio Code をご利用の場合
機能
ワークフロー
イベントの送信先
Stripe 健全性アラートファイルのアップロード
AI ソリューション
エージェントツールキット
モデルコンテキストプロトコルエージェントを使用した AI SaaS 請求ワークフローの構築
セキュリティとプライバシー
セキュリティ
Stripebot ウェブクローラー
プライバシー
Stripe を拡張する
Stripe Appsを構築する
Stripe アプリを使用する
パートナー
Partner Ecosystem
パートナー認定
ホーム開発者向けリソースChangelogClover2025-09-30.clover

注

このページはまだ日本語ではご利用いただけません。より多くの言語で文書が閲覧できるように現在取り組んでいます。準備が整い次第、翻訳版を提供いたしますので、もう少しお待ちください。

法務、PEP、制裁レビュー時のリスク要件に関する具体的な説明を追加互換性に関わる変更

新機能

Adds two new requirements, resolution paths, and a new error code for risk requirements related to legal holds, PEP reviews, and sanctions reviews. These were previously categorized as other_supportability_inquiry or other_compliance_inquiry requirements. Risk verification requirements follow the <id>.<requirement_description>.<resolution_path> format.

この更新により、以下の機能が追加されました。

  • Accounts API の requirements.errors 配列に external_holdエラーコードを追加します。
  • リスク検証要件 への notice 解決パス

この更新では、リスク検証要件 に以下の新しい説明も追加されます。

  • legal_hold: Stripe は法務上の理由により売上金を保管する必要があります。要件を満たすため、サードパーティーに売上金を送金することが求められる場合があります。
  • pep_review - Stripe は、当該事業が利害関係者や政治的に重要人物と関与していないことを確認する必要があります。
  • sanctions_review - Stripe は、当該事業が制裁対象者や制裁対象管轄区域と関与していないことを確認する必要があります。

Requirements with a description of sanctions_review or pep_review show up in pending_verification to indicate that the requirement is pending review by Stripe and doesn’t require any user action to resolve.

この変更により互換性が失われる理由

This change will break existing integrations that aren’t updated to explicitly handle these new requirements. Sanctions, PEP review, and legal hold requirements were previously represented by the less-specific other_supportability_inquiry requirement description.

要件以前の API 要件新しい API 要件
制裁レビュー中のアカウントinterv_abc123.other_supportability_request.supportinterv_abc123.sanctions_review.support
PEP レビュー中のアカウントinterv_abc123.other_supportability_request.supportinterv_abc123.pep_review.support
アカウントに法務保留があり、関連する external_hold エラーに追加情報があります。interv_abc123.other_supportability_request.supportinterv_abc123.legal_hold.notice
追加情報なしでアカウントが法務保留になりましたinterv_abc123.other_supportability_request.supportinterv_abc123.legal_hold.support

次の例は、法務保留により入金が無効になっているアカウントに対する v1/accounts API からの切り捨てられたレスポンスを示しています。

{ "id": "acct_123", // ... "requirements": { "alternatives": [], "current_deadline": null, "currently_due": [ "interv_def789.legal_hold.notice" ], "disabled_reason": "requirements.past_due", "errors": [{ "requirement": "interv_def456.legal_hold.notice", "code": "external_request", "reason": "There is an active levy on this account. Ask the account to have the government agency, Llama Revenue Services, send a signed release to llg-notices@stripe.com." }], "eventually_due": [ "interv_def789.legal_hold.notice" ], "past_due": [ "interv_def789.legal_hold.notice" ], "pending_verification": [] }, "payouts_enabled": false, // ... }

This example shows a truncated response from the Accounts v1 API for an account that has payouts disabled due to both a pending sanctions and a pending PEP review

{ "id": "acct_456", // ... "requirements": { "alternatives": [], "current_deadline": null, "currently_due": [], "disabled_reason": "requirements.pending_verification", "errors": [], "eventually_due": [], "past_due": [], "pending_verification": [ "interv_def123.sanctions_review.support", "interv_def456.pep_review.support", ] }, "payouts_enabled": false, // ... }

影響

You will gain a better understanding of capability limitations caused by sanctions reviews, PEP reviews, and legal holds and whether any action is required from you to resolve the requirement.

変更点

値変更する列挙値
external_request追加済み
BankAccount.future_requirements.errors[]BankAccount.requirements.errors[]Account.future_requirements.errors[]
 + さらに 5 件
Account.requirements.errors[]Capability.future_requirements.errors[]Capability.requirements.errors[]Person.future_requirements.errors[]Person.requirements.errors[]

アップグレード

  1. Workbench で現在の API バージョンを表示します。
  2. SDK を使用している場合は、この API バージョンに対応する SDK バージョンにアップグレードします。
    • SDK を使用していない場合は、Stripe-Version: 2025-09-30.clover を含めるように API リクエストを更新してください。
  3. Webhook エンドポイントに使用する API バージョンをアップグレードします。
  4. 新しいバージョンに対して、実装内容をテストします。
  5. Connect を使用する場合は、Connect の実装内容をテストします。
  6. Workbench でアップグレードを実行します。バージョンをロールバックできるのは 72 時間以内です。

Stripe API のアップグレードについて、詳細をご確認ください。

関連する変更

  • Adds a new error code for business type validations
  • Adds account balance and payout settings with the Balance Settings API
このページはお役に立ちましたか。
はいいいえ
  • お困りのことがございましたら 、サポートにお問い合わせください。
  • 早期アクセスプログラムにご参加ください。
  • 変更ログをご覧ください。
  • ご不明な点がございましたら、お問い合わせください。
  • LLM ですか?llms.txt を読んでください。
  • Powered by Markdoc