knagode
knagode

Reputation: 6125

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

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

I am trying to transfer some money from Stripe to Bank account and I am getting "Insufficient funds in Stripe account". Can I solve this somehow or I have to wait until balance appear on my account?

enter image description here

Upvotes: 2

Views: 7633

Answers (2)

Ejaz UL Haq
Ejaz UL Haq

Reputation: 81

Stripe Allow charging 'Balance' to test account urgently that developer can test stripe integration

$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)',
]);

use tok_bypassPending as value of source charge test account balance urgently
API Documentation: https://stripe.com/docs/api/charges/create
Test Token Documentation: https://stripe.com/docs/testing?lang=php#cards-responses
Move to 'Tokens' Tab, first will be this token
Token Documentation Screensot

Upvotes: 0

knagode
knagode

Reputation: 6125

Balance was not pending anymore after 6 days. Stripe support says that it takes about a week just the first time. After that it takes about 2 days.

Upvotes: 4

Related Questions