【问题标题】:Transfer money from stripe account to other account将钱从条带帐户转移到其他帐户
【发布时间】:2018-08-05 09:42:23
【问题描述】:

我正在使用它向关联的帐户收取费用,然后将钱汇到另一个帐户,但我不断收到此错误消息。

我不断收到此错误消息:

在为已连接的帐户收费时,您不能提供destination

   return stripe.charges.create({
      amount: 1000,
      currency: "usd",
      source: customer_id,
        destination: {
      account: "acct_1BxnsfGGXo2wovzm"
     },
 });

我该怎么做?谢谢

【问题讨论】:

    标签: ios node.js stripe-payments stripe-connect


    【解决方案1】:

    查看错误消息,api 似乎认为您正在使用目标参数没有意义的帐户借记:

    https://stripe.com/docs/connect/account-debits

    因此,您的 customer_id 变量很可能在这里包含帐户 ID 而不是客户 ID。

    【讨论】:

    • 是的,你是对的,所以为了让连接的账户互相汇款。该帐户还必须有一个客户 ID 对吧?!
    • 资金只能在平台和关联账户之间移动。
    猜你喜欢
    • 2011-09-01
    • 2016-12-14
    • 2021-11-08
    • 1970-01-01
    • 1970-01-01
    • 2022-01-11
    • 1970-01-01
    • 1970-01-01
    • 2016-03-26
    相关资源
    最近更新 更多