#Gadbit
1 messages · Page 1 of 1 (latest)
So, Stripe doesn't perform any additional checks on the connected account details after the user finishes filling out the onboarding form?
Hi 👋
I'm stepping as @limber wedge needs to go. What kind of details are you referring to? S
Stripe lists some of the requirements that are assessed later on here: https://stripe.com/docs/connect/required-verification-information
It depends on the capabilities requested for the Account
OK. I'll use standard connected accounts with only card_payments capability.
But my question is...
Is the user able to accept payments immediately after the onboarding form is completed or should they wait until Stripe verifies that info or something like that?
You will want to check the capabilities hash on the Account object to verify the status of the card_payments capability: https://stripe.com/docs/api/accounts/object#account_object-capabilities-card_payments
These capabilities do change over time if Stripe determines additional requirements are needed. However, if you listen to account.updated and capability.updated webhook events you will be notified of any changes.