简体   繁体   English

从PHP中的条形账户将金额发送到卖家银行账户

[英]Send amount to sellers bank account from stripe account in php

I have to send the sellers amount in his bank account or card . 我必须在卖方的银行帐户或卡中发送卖方金额。 Seller doesn't containing any stripe account.How can i send the amount in seller bank account from my stripe account(Admin Account)? 卖方不包含任何条带化帐户。如何从我的条带化帐户(管理员帐户)中发送卖方银行帐户中的金额?

I am using this code: And not understanding what is "CONNECTED_STRIPE_ACCOUNT_ID". 我正在使用此代码:并且不了解什么是“ CONNECTED_STRIPE_ACCOUNT_ID”。 I have to send money in his bank account not his stripe account. 我必须在他的银行帐户而不是他的条纹帐户中汇款。

Can somebody help? 有人可以帮忙吗? // Create a Transfer to a connected account (later): //创建转帐到关联帐户(以后):

$transfer = \Stripe\Transfer::create(array(
  "amount" => 7000,
  "currency" => "usd",
  "destination" => "{CONNECTED_STRIPE_ACCOUNT_ID}",
  "transfer_group" => "{ORDER10}",
));

You can not send funds to a bank account or debit card directly like this. 您不能像这样直接将资金发送到银行帐户或借记卡。 Instead, the seller needs to create a Stripe Account. 相反,卖方需要创建一个Stripe帐户。 The idea is to use Stripe Connect and ask your seller to either sign up for their own Stripe account or you would create one for them behind the scenes. 想法是使用Stripe Connect并要求您的卖方注册自己的Stripe帐户,或者在幕后为他们创建一个。 This is documented in details here . 这在此处详细记录。

Once they have their account, you will be able to create one of those transfers or create a charge on their behalf. 一旦有了他们的帐户,您就可以创建这些转帐之一或代表他们创建费用。 There are multiple solutions to this depending on your business model and who you want to pay Stripe's fees or hold liability. 有多种解决方案,具体取决于您的业务模式以及您要向Stripe支付费用或承担责任的人。 Those methods are described in details here . 这些方法将在此处详细描述。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM