#cesperian
1 messages ยท Page 1 of 1 (latest)
Hi there, was there a "use test data" button in the onboarding webpage?
i didnt notice one. but i wasnt looking for it either. Is it new? On which section/page of the onboarding is it supposed to show? I did see the 'use test account' button for bank details, but thats nothing new
What's the account ID?
the connect test account? acct_1N4FkDFLZ3GuBHof
https://stripe.com/docs/api/accounts/update#update_account-individual-id_number Did you set the individual.id_number ?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
checking...
looks like the only property set when creating the account is 'type'
and then an account link is created using the id returned ...
https://dashboard.stripe.com/test/events/evt_1N4FsuFLZ3GuBHoflYL747lj based on the latest account.updated event, there's a individual.id_number in pending_verification
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
https://stripe.com/docs/connect/testing#test-personal-id-numbers you can use 222222222 for an immediate successful verification.
hm. nowhere in our back end is an individual id number being set. Lemme look at the event..
It was probably set during the onboarding process through the account link
ok, i see in the event that "individual.id_number" is the reason for pending_verification...
4-digit ssn is the only personal id asked for during the onboarding steps, and 0000 is supposed to result in successful verification
*last 4 of ssn
0000 is for successful verification, but it will be pending and move to succeeded later.
is there a value for immediate verification? 2222?
If you want an immediate succeeded verification, you can use 222222222
Where? The onboarding ui only takes 4 digits.
try 2222
ok, standby...
same result, at least it seems from the dashboard. Pending verification of SSN
acct id acct_1N4GTw2ZdzUdpq6Y
๐ Taking over this thread, catching up now
cool : )
The SSN test numbers is the verification of Express/Custom connected account: https://stripe.com/docs/connect/testing#identity-and-address-verification
For Standard connected account like acct_1N4GTw2ZdzUdpq6Y, the SSN verification will be pending. Even if the SSN verification is pending, you should still be able to test payment in test mode
I guess my issue with that is that our app still shows as processing...
If we hack the ui for testing purposes it wont reflect what really happens on prooduction
in other words, users should not be able to submit invoices if their account is pending, during testing or live
so the issue is how to get the account to approve during the onboarding or shortly after?
*how to get it from pending to payoutsEnabled status
hello?
I'm still checking whether this is possible in Standard connected account in test mode
gotcha, thanks
It looks like test mode Standard connected account will follow the live mode SSN verification time frame that is up to 48 hours. There is no immediate verification SSN test number in test mode
hm. ok. Then I can expect it to update to payoutsEnabled automatically after that time? Or is there anything further I need to do, you think?....