API を利用して本人確認を処理する
Connect プラットフォームで Webhook と API を使用して連結アカウントの本人確認を処理する方法をご紹介します。
Connect platforms that onboard connected accounts using the API must provide Stripe with required information for Know Your Customer (KYC) purposes and to enable account capabilities. They must collect the information themselves and use the Accounts and Persons APIs to provide it to Stripe. We then verify the information, asking for more details when needed.
Stripe risk reviews
Stripe risk reviews of an account can add extra requirements, which you can’t fulfill using the API. Instead, enable your connected accounts to respond using embedded components, Stripe-hosted onboarding, or remediation links. You can also use your platform Dashboard to respond to risk reviews on behalf of your connected accounts.
確認プロセス
連結アカウントの支払いと入金を有効にする前に、Stripe は以下に応じて異なる特定の情報を必要とします。
- 連結アカウントの所在国
- 連結アカウントに適用される利用規約タイプ
- 連結アカウントでリクエストされるケイパビリティ
- The business_type (for example, individual or company) and company.structure (for example,
public_
orcorporation private_
)partnership
プラットフォームは、ビジネスとユーザに適切なアカウント登録フローを選択して、KYC 要件を満たす必要があります。大まかに言うと、これは必要なすべての情報を事前にまたは段階的に提供することを意味します。いずれにしても、Stripe からのリクエストを監視し、適切に対応するように連携を設定します。
- Webhook 設定で Connect Webhook URL を設定し、アクティビティ、特に
account.
タイプのイベントを監視します。Persons API を使用する場合は、updated person.
イベントも監視する必要があります。updated - アカウントを作成したらすぐに、
Account
オブジェクトの requirements.currently_due 属性で追加の要件を確認します。追加情報が必要な場合は、ユーザーから入手し、連結アカウントを更新します。 account.
イベント通知を継続的に監視して、updated requirements
ハッシュが変化しているかどうかを確認し、必要に応じて、追加情報をユーザーに求めます。
追加情報を提供する場合、すでに確認済みの詳細を再送信する必要はありません。たとえば、dob
がすでに確認されている場合は、それ以降の更新で再度提供する必要はありません。
注意
requirements.
が空でない場合は、追加情報が必要です。この情報が期限内に提供されない場合は、連結アカウントによる支払いの作成、入金の受け取り、または特定のタスクの実行がブロックされる可能性があります。
確認後に情報を変更する
個人または会社が確認された後、制限付きでその情報の一部を変更できます。連結アカウントの設定に基づく制限については、Update Account API をご覧ください。これらの制限以外の変更を行う場合は、サポートにお問い合わせください。
確認が必要かどうかを判断する
Webhook で account.
イベントを受信するか、API を介してアカウントを取得すると、Account (アカウント) オブジェクトを受信します。Account
オブジェクトの charges_
属性と payouts_
属性は、そのアカウントで支払いの作成や入金の受け取りが可能かどうかを示します。
Account
オブジェクトには、アカウントの確認に必要な要件を表す requirements
ハッシュがあります。
The requirements
hash has the following arrays:
eventually_
: 対応するしきい値に達したかどうかに応じて、収集が必要になる要件。要件が必須になると、その要件はdue currently_
リストにも表示されます。要件が必須になり、その期日が既存のdue current_
より前の日付である場合、deadline current_
は対応するしきい値の発効日に変わります。deadline currently_
: Account をdue active
で維持するためにcurrent_
までに収集する必要がある要件。deadline currently_
はdue eventually_
のサブセットです。due past_
:due current_
より前に確認されなかったために、ケイパビリティが無効化された要件。deadline past_
はdue currently_
のサブセットです。due errors
:currently_
またはdue past_
の特定の要件を再収集する必要がある、検証および確認の失敗に関する詳細。due requirement
: エラーに対応する要件を識別します。code
: 要件が無効である理由、または確認できない理由を示す列挙値。reason
: エラーの詳細を説明する英語のメッセージ。理由文字列でエラーの解決方法を提案することもできます。
disabled_
: アカウントが有効化されていない理由、および支払いや送金を処理できない理由を説明します。reason current_
: Account をdeadline active
で維持するために必要なcurrently_
の要件の収集期日。これは、非表示のケイパビリティを含め、Account がリクエストしたすべてのケイパビリティとリスク要件の最も早い期限を表します。due pending_
: 確認または審査の結果に応じて、必須となる可能性がある要件。非同期の確認が保留中でない限り、これは空の配列です。確認に失敗すると、要件はverification eventually_
、due currently_
、またはdue past_
に移行します。失敗した確認と保留中の確認の両方の対象となる要件は、due pending_
のままになることもあります。verification
The example below shows what the requirements
hash might look like for an account that has some information that’s currently_
, some information that’s eventually_
, and some information that’s raising verification errors
.
{ "id":
, "object": "account", "requirements": { "disabled_reason": null, "current_deadline": 1529085600, "past_due": [], "currently_due": [ "company.tax_id", "company.verification.document", "tos_acceptance.date", "tos_acceptance.ip" ], "eventually_due": [ "company.address.city", "company.address.line1", "company.address.postal_code", "company.address.state", "company.tax_id", "company.verification.document", "external_account", "tos_acceptance.date", "tos_acceptance.ip" ], "errors": [ { "requirement": "company.verification.document", "reason": "The company name on the account couldn't be verified. Either update your business name or upload a document containing the business name.", "code": "failed_name_match" }, ] }, ... }"{{CONNECTED_ACCOUNT_ID}}"
requirements.
に項目が含まれる場合は、requirements.
を確認します。current_
は、情報が必要となる時点を識別する Unix タイムスタンプです。通常、Stripe が current_
までに情報を受信しない場合、そのアカウントでの入金は無効化されます。ただし、状況によっては、このような結果にならない可能性もあります。たとえば、入金がすでに無効になっていて、アカウントが問い合わせに応答しない場合、Stripe が支払いを処理する機能も無効にすることがあります。
これとは別に、requirements.disabled_reason プロパティに値を設定できます。値は、このアカウントで入金や支払いができない理由を説明する文字列です。プラットフォームと連結アカウントは、場合によっては理由を解決したり異議申し立てを行うためのフォームを送信できます。
- Connected accounts with access to the full Stripe Dashboard, including Standard accounts, can access additional information (if available) in the Dashboard.
- Platforms can look up an account on the Connected accounts page to determine an account’s
disabled_
. You might be able to provide additional information on behalf of your connected accounts. If the disabled reason is associated with an appeal, you can generate a link to a form for the account to resolve the appeal.reason
理由 | 意味 |
---|---|
action_ | 連結アカウントのケイパビリティをリクエストする必要があります。詳細については、ケイパビリティのリクエストおよびリクエスト解除をご覧ください。 |
listed | アカウントが、禁止された個人または会社のリストに記載されてる可能性があります (Stripe が調査し、それに応じてアカウントを拒否または復元します)。 |
rejected. | アカウントは、不正使用または違法なアクティビティの疑いがあるため、拒否されました。 |
rejected. | 要求されたしきい値内での不完全な確認要件により、アカウントは拒否されています。 |
rejected. | アカウントは、サードパーティー (金融サービスプロバイダーまたは政府機関) の禁止された個人または会社のリストに記載されているため、拒否されました。 |
rejected. | その他の理由でアカウントが拒否されました。 |
rejected. | アカウントは、利用規約違反の疑いがあるため、拒否されました。 |
requirements. | このアカウントでケイパビリティを有効にするには、追加の確認情報が必要です。 |
requirements. | Stripe は現在、連結アカウントの情報を確認しています。ご対応は不要です。requirements.pending_verification 配列を調べて、確認対象の情報をご覧ください。 |
under_ | Stripe がアカウントを審査しています。 |
検証エラーと確認エラー
Account (アカウント) オブジェクトには、requirements.errors 配列が含まれます。この配列は、アカウントとケイパビリティを有効にするために必要とされる検証および確認の要件が満たされていない理由を示します。errors
配列には次の属性が含まれます。
requirement
:currently_
配列からのどの情報が必要かを指定します。due code
: 発生したエラーのタイプを示します。発生する可能性のあるエラーコードについては、API リファレンスをご覧ください。reason
: エラーが発生した原因と解決方法について説明します。
要件が currently_
であるアカウントの errors
配列がどのように表示されるかを示す例を以下に示します。この例は、提出された情報を使用してアカウントを有効にできない理由、およびエラーを解決する方法を示しています。検証または確認が失敗した場合、エラー情報とともに、要件が currently_
に再表示される場合があります。これらの更新を受け取るには、Connect Webhook を設定して account.
イベントを受信します。
{ "id":
, "object": "account", "requirements": { "current_deadline": 1234567800, "currently_due": [ "company.address.line1", "{{PERSON_ID}}.verification.document", ], "errors": [ { "requirement": "company.address.line1", "code": "invalid_street_address", "reason": "The provided street address cannot be found. Please verify the street name and number are correct in \"10 Downing Street\"", }, { "requirement": "{{PERSON_ID}}.verification.document", "code": "verification_document_failed_greyscale", "reason": "Greyscale documents cannot be read. Please upload a color copy of the document.", } ] }, ... }"{{CONNECTED_ACCOUNT_ID}}"
確認または検証には失敗しても、現在期限が来ている要件がない場合は、Webhook がトリガーされ、必要な情報に最終期日が設定されることが示されます。
事業情報
When information about a business is submitted, Stripe verifies the new information. For example, Stripe might verify that the provided business URL is valid, reachable, and includes information about the business. To check the status of verification information regarding a business, retrieve the Account
’s requirements
hash.
以下は、ビジネス情報の確認に関連するエラーのリストです。
エラー | 解決策 |
---|---|
invalid_ | ビジネス名は分かりやすい名前とし、認識できる単語で構成する必要があります。 |
invalid_ | 総称的なビジネス名やよく知られているビジネス名は使用できません。提供するビジネス名がアカウントのビジネスと一致していることを確認してください。 |
invalid_ | 商品の説明は 10 文字以上にしてください。 |
invalid_ | 商品の説明は、ビジネスの URL と異なるものにする必要があります。 |
| See Handle URL verification errors below. |
明細書表記
Stripe は、アカウントへの設定時に明細書表記と明細書表記のプレフィックスを検証します。たとえば、Stripe は指定された明細書表記がビジネスの説明と一致することを確認する場合があります。明細書表記がビジネスの説明に一致することを検証する際、Stripe はカードネットワークに提供される部分を表す、明細書表記の最初の 22 文字を使用します。ビジネスの説明は、アカウントの business_
、business_
、会社または個人の名前と適合します。
明細書表記に関する本人確認情報のステータスを取得するには、Account オブジェクトの requirements
を確認します。以下は、明細書表記の確認に関連するエラーのリストです。
エラー | 解決策 |
---|---|
invalid_ | 明細書表記は、5 文字以上にする必要があります。 |
invalid_ | 明細書表記は、アカウントのビジネス名、法人名、または URL と共通点があるものにする必要があります。 |
| 明細書表記に総称的な表記や既知の表記を使用することはできません。 |
invalid_ | 明細書表記のプレフィックスは、明細書表記、ビジネス名、法人名、または URL と共通点があるものにする必要があります。 |
Business representatives 
You must collect and submit information about the people associated with a connected account. The process depends on whether your connected accounts are companies or individuals:
- Companies only: Use the Persons API to add the information to a
Person
associated with theAccount
. - Individuals only: You can use the Persons API or the individual hash on the
Account
object. - A combination of individuals and companies: Use the Persons API to add the information to a
Person
associated with the account. That lets you use the same process for all of your connected accounts, regardless of their type.
個人に関する本人確認情報のステータスを取得するには、requirements ハッシュを使用します。
以下は、個人の本人確認に関連するエラーのリストです。
エラー | 解決策 |
---|---|
invalid_ | Stripe は提供された住所の市区町村、都道府県/州、郵便番号の組み合わせを検証できませんでした。 |
invalid_ | 個人の住所はアカウントが事業を行っている有効な所在地である必要があり、Highway Contract Box は指定できません。 |
invalid_ | 個人の住所は、アカウントが事業を行っている有効な所在地である必要があり、私設私書箱は指定できません。 |
invalid_ | 個人の年齢は 13 歳以上である必要があります。 |
invalid_ | 個人の生年月日は過去 120 年以内である必要があります。 |
invalid_ | Stripe はアカウントの電話番号を検証できませんでした。個人の国に合わせた形式を設定していることを確認してください。 |
invalid_ | Stripe は提供された住所の町名と番地を検証できませんでした。 |
| 納税者番号は、ダッシュなどの特殊文字を含まない 9 桁の固有の数字である必要があります。 |
国別の受付可能な確認書類
具体的な書類要件については、国別の受付可能な確認書類をご覧ください。
会社情報
確認プロセスの際に、アカウントの会社に関する情報の収集が必要になる場合があります。
アカウントの会社に関する本人確認情報のステータスを取得するには、Account の company.verification サブハッシュを使用します。
{ "id":
, "object": "account", ... "company": { "verification": { "document": null }, ... }, ... }"{{CONNECTED_ACCOUNT_ID}}"
Account (アカウント) オブジェクトで各本人確認属性の定義を検索できます。
書類確認時の問題に対処する
Problems with identity documents, either with uploaded files themselves or with using them to validate other information, cause many requirement verification errors. To help you recognize and handle the most common problems, the tables below list requirement error code
values related to document issues and provide guidance for resolving them.
The following errors relate to uploaded document files:
コード | 解決策 |
---|---|
| The upload failed due to a problem with the file itself. Ask your account user to provide a new file that meets these requirements:
|
| The provided file isn’t an acceptable form of ID from a supported country, or isn’t a type of legal entity document that is expected. Ask your account user to provide a new file that meets that requirement. For a list, see Acceptable ID types by country. |
| チームは、Stripe に問い合わせて、本人確認が失敗した原因の詳細を確認できます。 |
| 書類に発行日または有効期限がないか、書類の有効期限が切れています。本人確認書類の場合、有効期限は書類の提出日より後でなければなりません。住所確認書類の場合、発行日は過去 6 カ月以内でなければなりません。 |
THe following errors relate to identity verification:
コード | 解決策 |
---|---|
verification_ | The name on the account couldn’t be verified. Ask your account user to verify that they have provided their full legal name and to also provide a photo ID matching that name. |
| The information on the ID document doesn’t match the information provided by the account user. Ask them to verify and correct the provided information on the account. |
| The document might have been altered. Contact Stripe Support for more information. |
The following errors relate to business verification:
コード | 解決策 |
---|---|
| The information on the account couldn’t be verified. Your account user can either upload a document to confirm their account details, or update their information on their account. |
| The information that your account user provided couldn’t be verified with the IRS. Ask them to correct any possible errors in the company name or tax ID, or upload a document that contains those fields. (US only) |
| The information on the document doesn’t match the information provided by the account user. Ask them to verify and correct the provided information on the account, or upload a document with information that matches the account. |
| The uploaded document is missing a required field. Ask your account user to upload another document that contains the missing field. |
verification_ | ビジネスのタイプまたは構造が正しくないようです。このアカウントの正しいビジネスのタイプまたは構造を指定してください。 |
The following errors relate to relationship verification:
コード | 解決策 |
---|---|
information_ | エラーメッセージを参照して、ドキュメントまたはキー入力データにどの情報が欠落しているかを理解します。重要な所有権を持つ持株会社に関連している場合、エラーコードには、特定された未入力の持株会社も記載されています。詳しくは、持株会社の受益所有権の確認のサポート記事をご覧ください。 |
verification_ | 指定された承認者の権限を確認できませんでした。承認者を、委任代理人として登録されている人物に変更してください。代表者の地位の確認のサポート記事をご覧ください。 |
verification_ | アカウント代表者の権限を確認できませんでした。承認者をアカウントに追加し、承認者が署名した委任状を提出してください。代表者の地位の確認のサポート記事をご覧ください。 |
verification_ | ビジネスオーナーが入力されていません。すべてのビジネスオーナーに情報を入力するか、ビジネスオーナー自身に情報を提供するよう依頼します。未入力として特定されたオーナーは [Name1, Name2] です。 |
verification_ | アカウントの取締役が記載されていません。アカウントを更新し、現在の取締役が記載されている登録書類をアップロードしてください。 |
verification_ | ドキュメントの取締役がアカウントにありません。アカウントを更新し、現在の取締役の登録書類をアップロードします。 |
verification_ | 所有権の免除理由が却下されました。代わりに、別の免除理由を選択するか、実質的支配者の証明書をアップロードしてください。 |
注意
Don’t resubmit a file that previously failed. Duplicate uploads immediately trigger an error and aren’t rechecked.
URL 確認のエラーを処理する
URLs for e-commerce businesses need to conform to certain card network standards. In order to comply with these standards, Stripe conducts a number of verifications when reviewing URLs. To learn about best practices for URLs and common elements for e-commerce businesses, see the website checklist.
In many cases, you can resolve business URL verification errors by generating a remediation link from your platform Dashboard. Otherwise, update the Account
’s business_profile.url. If you resolve the error another way, such as by fixing a problem with the company’s website, trigger re-verification by changing the URL on the Account
to any other value, then immediately changing it back.
API を使用して、URL 関連の問題をすべて解決できるわけではありません。URL 確認エラーの種類によっては、連結アカウントのウェブサイトへのアクセス方法について、またはアカウントが URL 要件への対応を免除されていることの証明方法についての情報が追加で必要です。この種の問題を解決するには、お客様またはお客様の連結アカウントが補足情報を提供しなければなりません。
If you can’t resolve the issue, direct your connected account to contact Stripe Support.
注
Stripe’s Terms of Service require all e-commerce businesses to populate their Account
’s business_profile.url property with a working URL of their business website when activating the account with the card_
capability. An account is considered an e-commerce business if it promotes or sells any products or services through an online website, social media profile, or mobile application. If the account doesn’t operate a website to promote their business, sell products, or accept payments, they’re required to provide the business_profile.product_description instead. A product description needs to detail the type of products being sold, as well as the manner in which the account charges its customers (for example, in-person transactions). For more information, see the Business website for account activation FAQ.
To help you recognize and handle the most common problems, the following table lists requirement error code
values related to issues with the business URL and provides guidance for resolving them.
エラー | 解決策 |
---|---|
invalid_ | 指定された URL は、Stripe がアカウントとは関連がないとみなす一般的なビジネスサイトと一致します。この問題を解決するには、ビジネス固有の URL を入力してください 。 |
invalid_ | 指定された URL の形式が正しくありません。この問題を解決するには、https://example. のような正しい形式の URL を入力してください。 |
invalid_ | 指定された URL のウェブサイトにアクセスできません。特定の地域をブロックしてウェブサイトを表示しないようにしている場合は、ウェブサイトの確認が完了するまで一時的にブロッカーを解除してください。 |
invalid_ | 指定された URL のウェブサイトに掲載されている情報が Stripe アカウントの情報と一致しません。 |
invalid_ | 指定された URL のウェブサイトにビジネス名、または提供する商品およびサービスの明確な説明のいずれかがありません。 |
invalid_ | 指定された URL のウェブサイト、ソーシャルメディアのプロフィール欄、モバイルアプリではアカウントのビジネスを確認できません。 |
invalid_ | アカウントがウェブサイト、ソーシャルメディアのプロフィール欄、またはモバイルアプリケーションで商品またはサービスを販売または宣伝していることを確認しましたが、アカウントの URL が指定されていません。この問題を解決するには、URL を指定してください。 |
invalid_ | ウェブサイトにカスタマーサービスの詳細が掲載されていません。 |
invalid_ | ウェブサイトに返品に関するポリシーおよびプロセスが掲載されていません。 |
invalid_ | ウェブサイトに返金ポリシーが掲載されていません。 |
invalid_ | ウェブサイトにキャンセルポリシーが掲載されていません。 |
invalid_ | ウェブサイトに、法的制限または輸出制限の対象となる商品およびサービスの開示が掲載されていません。 |
invalid_ | ウェブサイトに利用規約が掲載されていません。 |
invalid_ | ウェブサイトは現在作成中であるため、指定された URL のウェブサイトを確認できません。 |
invalid_ | ウェブサイトはパスワードで保護されているため、指定された URL のウェブサイトを確認できません。 |
invalid_ | 特定の地域のウェブサイトへのアクセスがブロックされているため、指定された URL のウェブサイトを確認できません。特定の地域をブロックしてウェブサイトを表示しないようにしている場合は、ウェブサイトの確認が完了するまで一時的にブロッカーを解除してください。 |
invalid_ | ウェブサイトにコンテンツが掲載されていないため、指定された URL のウェブサイトを確認できません。 |
ライブネス要件を処理する
アカウントには、proof_
要件を持つ 1 人以上の個人を含めることができます。proof_
要件により、シンガポールの MyInfo などの電子 ID 資格情報の収集、または Stripe Identity を使用したドキュメントまたは自撮り写真の収集が必要になる場合があります。proof_
要件のすべてのバリエーションを満たすため、Stripe がオンラインで提供するオンボーディングまたは埋め込み型のオンボーディングを使用することをお勧めします。
本人確認を処理する
In some cases, depending on how much of an account’s identity information Stripe has been able to verify, we might ask you to upload one or more documents. Required documents appear in the Account
’s requirements
hash.
The following entries in requirements.
identify documents that you must upload:
person.
: 受け入れ可能な形式の身分証明書を撮影したカラー画像が必要です。verification. document person.
: 公共料金の請求書など、ユーザの住所が確認できる書類を直接撮影したカラー画像が必要です。verification. additional_ document company.
: 会社の定款など、ビジネスの法人 ID 番号を確認できる法人書類の証明書が必要です。verification. document
書類は、次の 2 段階のプロセスでアップロードします。
- Stripe にファイルをアップロードする
- アカウントにファイルを関連付ける
注
For security reasons, Stripe doesn’t accept copies of IDs sent by email.
ファイルをアップロードする
To upload a file, use the Create File API by using a POST to send the file data as part of a multipart/form-data
request.
アップロードするファイルは以下の要件を満たしている必要があります。
- カラー画像 (8,000 ピクセル x 8,000 ピクセル以下)
- 10 MB 以下
- 本人確認書類が JPG または PNG 形式である
- Address or legal entity documents are JPG, PNG, or PDF format
Pass the file data in the file
parameter and set the purpose parameter according to the Account
or Person
property that will hold the document. To identify the purpose, look up the property in the API Reference.
このリクエストはファイルをアップロードし、トークンを返します。
{ "id":
, "created": 1403047735, "size": 4908 }"{{FILE_ID}}"
Use the token’s id
value to attach the file to a connected account for identity verification.
ファイルを添付する
After you upload the file and receive a representative token, update the Account
or Person
and provide the file ID in the appropriate parameter.
以下は、本人確認書類の例です。
以下は、会社書類の例です。
この更新により、verification.
が pending
に変更されます。さらに別の個人を確認する必要がある場合は、Persons API を使用して更新します。
身分証明書を確認する
Satisfying all identity verification requirements for a person or company triggers a v2.
or v2.
webhook notification, signaling that the verification process is complete.
Stripe can take anywhere from a few minutes to a few business days to verify an image, depending on its readability.
If the verification attempt fails, the associated requirement entry contains an error with a code
and description
describing the cause. The description
contains a human-readable message such as “The image supplied isn’t readable,” which is safe to present to your account user but isn’t localized. The code
value is a string such as verification_
, which you can use to localize error messages for your account users.
Verification failure also triggers a v2.
or v2.
webhook notification.
Handle risk verifications
Stripe は、accounts.requirements 属性でリスク要件と規制順守要件を報告します。これらの要件は次のスキーマ <id>.
:に従います。
id
は、 Stripe または金融パートナーが必要とする情報を一意に識別します。この ID の前には、リスク確認要件を示すinterv_
が常に付与されます。requirement_
は、description identity_
やverification rejection_
など、要件を満たすために必要な情報を具体的に説明します。appeal resolution_
は、リクエストされた情報をお客様または連結アカウントが提供する方法を指定します。path challenge
: 連結アカウントは、プロンプトの要求に直接応答する必要があります。多くの場合、銀行口座などの機密情報や、自撮り写真といった口座所有者のみが提供できる情報が必要となります。form
: フォームリクエストには連結アカウントが入力するか、またはお客様がアカウントの代理として入力します。support
: 要件に直接対応できません。Stripe サポートにお問い合わせください。
{ "id":
, "object": "account", "requirements": { "current_deadline": 1234567800, "currently_due": [ "{{REQUIREMENT_ID}}.restricted_or_prohibited_industry_diligence.form" ], "pending_verification": [], ... }, ... }"{{CONNECTED_ACCOUNT_ID}}"
解決パスの要件が満たされると、要件の解決パスの値が support
に変わり、その要件が要件ハッシュの pending_
セクションにも表示されます。Stripe は提出された情報を確認し、解決済みとして要件を終了するか、現在、期限が来ている新しい要件を掲載します。
{ "id":
, "object": "account", "requirements": { "current_deadline": 1234567800, "currently_due": [], "pending_verification": [ "{{REQUIREMENT_ID}}.restricted_or_prohibited_industry_diligence.support" ], ... }, ... }"{{CONNECTED_ACCOUNT_ID}}"
リスクと規制順守の要件は、要件のタイプに応じて、以下のいずれかの方法で改善できます。
- Connect の埋め込みコンポーネント: ウェブサイトに直接 Connect コンポーネントを埋め込むことができます。要件が表示されたら、ユーザーをアカウント登録の埋め込みコンポーネントに誘導します。このコンポーネントで、ユーザーは未対応の要件を UI から直接入力するように求められます。または、通知バナーの埋め込みコンポーネントを使用して、未対応の要件についてユーザーに通知します。
- Stripe のホスティング登録: 連結アカウントを誘導するリンクを生成できます。このリンク先では、アカウントリンクからプログラムによって、またはプラットフォームのダッシュボードから手動で未対応の要件に対応することができます。
- アカウントの代理として入力: 自社のプラットフォームのダッシュボードを使用して、連結アカウントの詳細からフォームベースのリスク要件を特定し、そのアカウントの代理として要件に対応することができます。
The following table provides more detail about possible descriptions of risk- and compliance-related requirements.
値 | 説明 |
---|---|
business_ | アカウントをサポートできるかどうかを確認するために、事業の性質に関する追加情報が必要です。 |
restricted_ | この事業は制限/禁止対象のカテゴリー (アルコール、保険、金融商品の販売など) で運営されている可能性があります。Stripe では、アカウントをサポートできるかどうかを確認するために、事業の性質やライセンス情報の種類に関する追加情報が必要になることがあります。 |
intellectual_ | この事業は、著作権の保護対象の商品やサービスを販売している可能性があります。これらの商品を販売する認可をアカウントが保持していることを確認するため、追加情報が必要になります。 |
supportability_ | Stripe の利用規約では、事業のサポートが禁止されています。アカウントはこの決定に異議を申し立てることができます。 |
other_ | アカウントをサポートできるかどうかを確認するために、追加情報が必要です。 |
credit_ | アカウントをサポートできるかどうかを確認するために、事業の性質に関する追加情報が必要です。 |
reserve_ | Stripe がこのアカウントに対して予備金の留保を適用しています。これにより、アカウントが Stripe で支払いを受け付ける機能に影響が及ぶことはありません。アカウントは Stripe の決定に異議を申し立てることができます。 |
identity_ | The person responsible for the account must verify their identity by uploading an ID document and a selfie. |
url_ | ビジネス URL は、提供する商品とサービスを反映している必要があります。アカウントをサポートする前に URL の変更が必要になる場合があります。 |
address_ | 書類のアップロードによって事業者の住所を確認する必要があります。 |
domain_ | 指定した URL またはドメインを、アカウント所有者が管理していることを確認する必要があります。 |
bank_ | 事業者に関連付けられた銀行口座の詳細を確認する必要があります。 |
customer_ | 事業者に関連付けられたカスタマーサービスの連絡先情報を確認する必要があります。 |
fulfillment_ | 事業者のフルフィルメントポリシーを確認する必要があります。 |
product_ | 事業者の Stripe アカウントには、正確な商品の説明が登録されている必要があります。 |
statement_ | お客様のビジネスを正確に反映する明細書表記が必要です。 |
capability_ | Stripe の利用規約では、このビジネスに関連する特定のケイパビリティのサポートが禁止されています。アカウントはこの決定に異議を申し立てることができます。 |
rejection_ | Stripe の利用規約では、リスクのレベルが高いため、事業のサポートが禁止されています。アカウントはこの決定に異議を申し立てることができます。 |
platform_ | プラットフォームが自身の連結アカウントに対する介入を表示しました。これは実際の介入である場合もあれば、API の導入のテストである場合もあります。 |
other_ | 他の説明のいずれにも当てはまらない追加のコンプライアンス情報が必要です。 |
other_ | 他の説明のいずれにも当てはまらない追加のビジネス情報が必要です。 |