如何添加与条形客户关联的银行帐户

时间:2016-06-30 08:51:32

标签: ruby-on-rails ruby stripe-payments payment

我正在轨道上的红宝石中构建应用程序,商家在其中提供他的银行帐户信息,并且他的付款应该是每月流程。

我想用条纹实现这个目标。 如何添加/创建与条带客户关联的银行帐户?

1 个答案:

答案 0 :(得分:2)

首先,我们需要找到条带客户,之后我们可以在该客户帐户中添加新的银行帐户。 您可以参考此代码了解更多详情

# Add bank account data on stripe for patient users
def add_bank_account
  customer = Stripe::Customer.retrieve(stripe_customer_id)
  customer.sources.create({:source => {:object => "bank_account", :account_number => bank_account_number,  :country => country,  :currency => "USD", :account_holder_name => account_holder_name, :account_holder_type => account_holder_type, :routing_number => routing_number }})
end

account_holder_type可以是公司或个人

要开始付款流程,您需要verify新的银行帐户