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

时间:2016-04-27 08:38:06

标签: stripe-payments stripe-connect

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

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

enter image description here

2 个答案:

答案 0 :(得分:3)

6天后余额不再等待。条纹支持说,这是第一次需要大约一个星期。之后大约需要2天。

答案 1 :(得分:0)

条带允许向“余额”收费以紧急测试帐户,以便开发人员可以测试条带集成

$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
转到“令牌”标签,首先是该令牌
Token Documentation Screensot