2

我想在我的 iOS 项目中使用 Stripe Connect。我的要求是将金额从我的平台账户转移到关联账户。这可以通过“特殊情况转移”实现,但有一些限制。因此,我计划在我的一个连接帐户上接受付款,然后将其转移到另一个帐户。可以将金额从一个关联账户转移到另一个账户吗?

4

2 回答 2

1
Stripe connect plateform provide such things
at first deducted amount submitted to stripe admin account than admin account to respective bank account.

doc : https://stripe.com/docs/api/transfers
stripe.transfers.create(
  {
    amount: 400,
    currency: 'gbp',
    destination: account_id,
    transfer_group: 'ORDER_95'
  },
  function(err, transfer) {
  }
);
于 2020-04-10T08:02:49.077 回答
1

这完全取决于您必须转移的金额。如果您只需要电汇不到总净体积的 10%,则可以使用特殊情况转移。我实际上在我的平台上使用它是这样的:

Stripe::Transfer.create(
  amount: params[:amount].to_i,
  currency: 'eur',
  destination: params[:stripe_id]
)

无论如何,您不能将资金从已连接的帐户转移到另一个帐户。我已经遇到过这种情况,我联系了 Stripe 支持人员,他们确认了这一点。

于 2016-08-01T10:56:28.770 回答