【问题标题】:How much time does it take for pending payments to be converted into the Stripe balance?待付款转换为 Stripe 余额需要多长时间?
【发布时间】:2016-04-27 08:38:05
【问题描述】:

将待处理的 Stripe 付款转换为 Stripe 余额需要多长时间?

我正在尝试将一些钱从 Stripe 转移到银行账户,我收到 “Stripe 账户中的资金不足”。我能否以某种方式解决这个问题,或者我必须等到余额出现在我的帐户上?

【问题讨论】:

  • 资金可用于转账的延迟因国家/地区而异 - 大多数国家/地区为 7 天,美国和澳大利亚为 2 天。如果您对此有更多疑问,请直接写信给 Stripe 的支持:support.stripe.com/email
  • 呃,那是一段时间。也写信给 Stripe。非常感谢您的提示!

标签: stripe-payments stripe-connect


【解决方案1】:

余额在 6 天后不再待处理。 Stripe 支持人员表示,第一次大约需要一周时间。之后大约需要2天。

【讨论】:

  • 这也适用于测试模式吗?
【解决方案2】:

Stripe 允许充“余额”紧急测试账户,开发者可以测试条带集成

$stripe = new \Stripe\StripeClient('Your_Test_SK');
$stripe->charges->create([
  'amount' => 2000,
  'currency' => 'usd',
  'source' => 'tok_bypassPending',
  'description' => 'My First Test Charge (created for API docs)',
]);

使用tok_bypassPending 作为source 的值紧急收取测试账户余额
API 文档: https://stripe.com/docs/api/charges/create
测试令牌文档: @987654322 @
移至“令牌”选项卡,首先是此令牌
Token Documentation Screensot

【讨论】:

    猜你喜欢
    • 2017-07-28
    • 2017-05-02
    • 2013-09-14
    • 1970-01-01
    • 2016-12-03
    • 2017-05-14
    • 1970-01-01
    • 2017-06-03
    • 1970-01-01
    相关资源
    最近更新 更多