#complaingeleno-changes
1 messages · Page 1 of 1 (latest)
Weren't there some onboarding changes that were made today?
It is expected that verification should move to pending_verification first as the verification process is asynch
Not aware of any significant onboarding changes taking place today.
Seeing this at the top of my platform account
Ah okay, that isn't really what I would consider an "onboarding change" as in, no behavior changed, just different information is required.
Right right, I was just wondering if that's why my specs aren't passing anymore
No, that shouldn't really have any impact.
Do you have an example from before where you weren't seeing verification go to pending?
Can you provide the account ID?
Which one?
The test connected account?
Basically that setup code ^^
Used to be enough to run charges on a test account
And now it's not
Yes, a test account that returned a response of verified for the above would be great.
acct_1KjVjdQuMNClzm51
Thanks, let me take a look
Thanks!
If you look at the response to the account updated, you can see that that account was pending_verification as well: https://dashboard.stripe.com/test/logs/req_IToQJzMhdK0Fr9
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
So it did not verify immediately.
Usually the verification is quite quick. But it has always been asynch as far as I know.
Did something change w/ respect to when charges can be run against unverified accounts?
I don't believe so
This spec has been running for quite some time with no trouble and it basically just goes and runs a charge immediately after that call
Which, according to that log, means it allowed me to charge an unverified test account
Whereas now I'm seeing errors
I guess it hardly matters, I have to fix it either way. What's the standard procedure here? Poll for verification before proceeding?
Webhooks are the standard procedure.
You would listen for account.updated which will tell you when the account is active for charges
Gotcha