バーチャルカードを作成する
カード保有者を作成し、バーチャルカードを発行します。
ダッシュボードまたは Create a card エンドポイントを使用して、カード保有者にバーチャルカードを発行できます。カード保有者は、バーチャルカードを作成するとすぐに使用できます。
カード保有者を作成する
ダッシュボードまたは Cardholders API を使用して、カード保有者を作成できます。
Cardholder オブジェクトは、カードを発行できる個人または法人を表します。カードに表示する名前と請求先住所で Cardholder
を作成します。請求先住所は、カード保有者がオンラインで購入する際に要求されることが多く、通常は連結アカウントまたはプラットフォームのビジネスの住所です。
カード保有者を作成するとき、または後で更新するときに、デジタルウォレットなどの一部の機能に必要な phone_
や email
などの追加情報を含めることができます。また、preferred_locales を指定して、3D セキュアなどの機能についてカード保有者の言語をカスタマイズすることもできます。
Stripe は指定された情報が格納された Cardholder
オブジェクトを返し、issuing_
Webhook イベントを送信します。
個人タイプのカード保有者の要件
カード保有者のタイプはデフォルトで individual
に設定されますが、必要に応じて company
タイプを設定することもできます。
Stripe が規制上のガイドラインに従って審査する個人のカード保有者の姓と名の値を入力してください。また、生年月日の入力も検討してください。入力することで、ウォッチリストの審査を削減できる可能性があります。
認証済みユーザー利用規約を承諾する
Celtic Bank が支援するプログラムの個人にカードを発行する場合は、そのカード保有者のカードを有効化する前に、Celtic Bank 認定ユーザー規約への同意を記録する必要があります。アカウント保有者とカード保有者に提示する必要がある契約書の詳細については、発行と財務に必要な契約書を参照してください。
該当する場合、Stripe は Cardholder
オブジェクトの requirements
プロパティでこの要件を通知します。
{ "id": "ich_1MGlTC2eZvKYlo2CJnowP9Z5", "name": "Jenny Rosen", ... "requirements": { "disabled_reason": "requirements.past_due", "past_due": [ "individual.card_issuing.user_terms_acceptance.date", "individual.card_issuing.user_terms_acceptance.ip", ], }, ... }
Cardholder
の代理で規約を承認するには、カード保有者が規約を承認した時間の Unix タイムスタンプに加え、カード保有者の IP アドレスを渡します。
カード有効化の要件を満たしたら (氏名と利用規約への同意の証明など)、そのカード保有者のカードを有効化できます。
カードを作成
カードを作成し、カード保有者に割り当てます。このリクエストには、Cardholder
オブジェクトの ID、currency
、カード種別の virtual
が含まれます。
Stripe は、作成後すぐに Card
オブジェクトを返し、issuing_
Webhook イベントを送信します。
カードを有効化
For authorizations to be approved on a card, its status
must be set to active
. Past-due requirements block card activation.
Activate on creation
You can activate the card when creating it using the Dashboard or the API. In the Dashboard, when creating a card, click Activate card. Using the API, set status
to active
when using the create card endpoint.
Activate after creation
Alternatively, after creating an inactive card, you can activate it using the Dashboard or the API. To activate it using the Dashboard, select the card you want to activate, then click Activate card. To activate it using the API, use the update card endpoint to set its status
to active
.
Re-activate after blocking
In some cases, multiple incorrect PIN attempts on a transaction deactivates a card, preventing further authorizations. To reactivate the card, use the Dashboard or the update card API to set the card’s status
to active
.