🙌
stripe connect(custom) 法人の出金に必要な情報
必要情報
だいたいここに書いてありますが、簡単なまとめ+補足
国によって違います
あとこれは2023年4月現在の情報です
おおまかに必要なのは
- account api
- person api
- external accounts api
です
account api
- 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でrepresentative
とdirector
を作成する必要があるのですが、director
を作ったあとaccount api からdirectors_provided
をtrueにする必要があります(stripeさんドキュメントアップデートして!)
あと後述のexternal accountsはaccount apiでも設定できます
person api
representative
とdirector
を作成する必要があります
director
は氏名、氏名カナ、dob、relationship.director=trueだけで大丈夫です
- 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
- object
- country
- currency
- routing_number
- account_number
- account_holder_name (日本は必須、無いと400)
Discussion