【问题标题】:STRIPE "Cannot accept the Terms of Service on behalf of Standard and Express connected accounts"STRIPE“不能代表 Standard 和 Express 关联账户接受服务条款”
【发布时间】:2021-01-09 08:03:38
【问题描述】:

我正在使用 Stripe,并且我已经连接了一个快速帐户。 我已经更新了满意的帐户信息,但它仍然受到限制,因为它说我必须接受 tos(服务条款)ni 才能启用所有功能。 我用来更新的 api 返回了这个错误

"message": "您不能代表 Standard 和 Express 连接的账户接受服务条款。", "type": "invalid_request_error",

我已经点击链接stipeupdate

我该如何解决这个问题?

【问题讨论】:

  • 您应该为此联系 Stripe 支持:support.stripe.com/contact
  • 我做到了,但他们的反应更加令人困惑,而且需要时间。这就是我在这里的原因
  • @MuhammadUsama 你找到解决这个问题的方法了吗?

标签: express stripe-payments


【解决方案1】:

根据您发布的链接,您似乎正在尝试运行以下代码:

const account = await stripe.accounts.update(
  '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
  {
    tos_acceptance: {
      date: Math.floor(Date.now() / 1000),
      ip: request.connection.remoteAddress, // Assumes you're not using a proxy
    },
  }
);

错误是明确的。除非入职帐户是自定义...而不是 Express 或 Standard

,否则您无法运行该代码

【讨论】:

    猜你喜欢
    • 2016-01-22
    • 2023-03-27
    • 2021-03-01
    • 1970-01-01
    • 1970-01-01
    • 2021-07-30
    • 1970-01-01
    • 2019-08-17
    • 1970-01-01
    相关资源
    最近更新 更多