#deepakkumar_wizniche - express dashboard testing
1 messages ยท Page 1 of 1 (latest)
Oh hey again ๐
It can take time but should be relatively quick in test mode
What are the requirements showing on the account?
Are any others waiting for information?
Hello again!
It requires phone, address, email, birthdate, company websitr and bank account/card
website
Do you know how long it should take normally?
yes
wait what
Sorry, share
Oh
Can you give me the test account id you're looking at? eg acct_1234
thanks - taking a look
Thanks
That account appears to be active and already getting test payouts
What isn't working like you expect?
Actually I am testing as a customer of this account
My bad
I am creating account as a customer of test accoumt
account
Ok, so then is everything working like you expect? Or is there an outstanding issue?
Yeah customer connect test account is not getting verified
And which account is that?
ok lets take a step back
I thought you were having trouble verifying a test mode connected account
But now you're saying there's something unexpected with a customer
Can you explain again what you're trying to do that is not working? Do you have some failing request IDs you can share?
Alright
So
I am trying to do test mode connected account for new user
Our platform doesn't make stripe dashboard for new customer under test mode
Is that something, I can enable?
Like it doesn't ask for customer email or password
when we redirect to stripe connecy
connect flow
The new user on our platform is only asked for name, phone, address, email and then account information by stripe
That's why I can find the account id of that user
I'm not sure what you mean by this
Can you share some code/requests you're making?
I'm still not clear on what isn't doing what you expect
Are you creating an express account and redirecting to stripe onboarding?
And asking about collecting an email for the account?
$connect = \Stripe\Account::create([
'type' => 'express',
'country' => 'US',
'capabilities' => [
'card_payments' => ['requested' => true],
'transfers' => ['requested' => true],
],
'email' => $data['email'],
]);
OK, and what is happening that is not expected?
Note that email is not used in test mode -- you can only access the express dashboard via login links
If you want to test the dashboard you'll need to create a login link:
https://stripe.com/docs/connect/integrate-express-dashboard#create-login-link
Does that get you what you need?
Great ๐