RubyストライプAPIを使用して銀行口座を追加しようとしています。ストライプエラー "Missing required param:type"が返されます。Ruby - ストライプ:必須のパラメータがありません:タイプ
私は、次のRubyコードを使用しています:
account = Stripe::Account.create({
:country => 'US',
:managed => true,
:transfer_schedule => {
:interval => 'weekly',
:weekly_anchor => 'friday'
},
:legal_entity => {
:dob => {
:day => birthday.day,
:month => birthday.month,
:year => birthday.year
},
:first_name => first_name,
:last_name => last_name,
:type => 'individual'
},
:tos_acceptance => {
:date => Time.now.to_i,
:ip => request.remote_ip
}
})
これは役立つかもしれない:https://gist.github.com/JagdeepSingh/166fa03829275cb6131d77abc6d4c148#custom-accounts –