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

How much time does it take for pending payments to be converted into the Stripe balance?

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

我正在尝试将一些钱从 Stripe 转入银行账户,我得到 "Insufficient funds in Stripe account"。我能以某种方式解决这个问题吗?还是我必须等到我的帐户出现余额?

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

Stripe 允许收费'Balance' 测试账号,开发者可以测试 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
测试令牌文档: https://stripe.com/docs/testing?lang=php#cards-responses
移动到 'Tokens' 选项卡,首先是这个令牌
Token Documentation Screensot