🙌

stripe connect(custom) 法人の出金に必要な情報

2023/04/25に公開

必要情報

だいたいここに書いてありますが、簡単なまとめ+補足
国によって違います
あとこれは2023年4月現在の情報です

https://stripe.com/docs/connect/required-verification-information#JP-full-company.sole_proprietorship--card_payments

おおまかに必要なのは

  • account api
  • person api
  • external accounts api
    です

account api

https://stripe.com/docs/api/accounts

  • type
  • capabilities
  • business_type

business_profile (登録する法人の情報)

  • business_profile.mcc
  • business_profile.url

tos_acceptance (利用規約の同意)

  • tos_acceptance.ip
  • tos_acceptance.date

company (会社の所在地など)

  • company.address_kana
  • company.address_kanji
  • company.phone
  • company.tax_id
  • company.directors_provided (後述)

person apiでrepresentativedirectorを作成する必要があるのですが、directorを作ったあとaccount api からdirectors_providedをtrueにする必要があります(stripeさんドキュメントアップデートして!)

あと後述のexternal accountsはaccount apiでも設定できます

person api

representativedirectorを作成する必要があります
directorは氏名、氏名カナ、dob、relationship.director=trueだけで大丈夫です

  • email
  • phone
  • first_name_kana
  • first_name_kanji
  • last_name
  • last_name_kanji
  • address_kana
  • address_kanji

dob

  • dob.day
  • dob.month
  • dob.year

verification (身分確認証のバイナリデータ)

  • verification.document.back
  • verification.document.front

relationship

  • relationship.director
  • relationship.representative
  • relationship.title

external accounts api

https://stripe.com/docs/api/external_accounts

  • object
  • country
  • currency
  • routing_number
  • account_number
  • account_holder_name (日本は必須、無いと400)

Discussion