#rafmaghari-instant-payouts
1 messages · Page 1 of 1 (latest)
Instant Payouts is only generally available in Canada, Singapore, the United Kingdom, and the United States right now : https://stripe.com/docs/connect/instant-payouts
Actually we don't want to use the Instant payout we want the standard process two days delay then automatic payout but every time I'm creating a custom account the error pop up.
Is there any setting I need to change to disable this?
'settings' => [
'payouts' => [
"debit_negative_balances" => true,
"schedule" => [
'delay_days' => 2,
'interval' => 'daily'
],
"statement_descriptor" => null
]
]
^ that's why I update the account payout's setting.
did you add a card as an external account?
yep..
$this->stripeClient->accounts->createExternalAccount( $account->id, ['external_account' => $token] );
This is my code for that
what is the value of token?
in any case, if you add a card as an external account, the assumption is that you want to use instant payouts.
you should create a bank account as an external_account instead
ow! I see.
Is there any testing account for bank? thank you 🙂
card is always consider as instant payout got it!
select Australia from the dropdown to get the list of test bank account details for it
Got it! Thank you Alex I will try it for the mean time then I'll update you soon.