#Kamon
1 messages · Page 1 of 1 (latest)
Hello 👋
Both the booleans reflect the status of where the account is in terms of onboarding.
As far as I know, details_submitted is when the account has submitted the required onboarding information.
payouts_enabled is toggled to true once all the verifications have been completed and the account has successfully onboarded
Interesting, how would I got about redirecting the user to Stripe Connect to get them to the payouts_enabled state?
I know I'd probably create another account link and probably ask to continue the onboarding process, but it's unclear if that'd actually get them to the payouts_enabled state
Yup creating an account link would redirect them to the flow where they need to submit the missing/pending information to get payouts enabled
https://stripe.com/docs/connect/express-accounts#return-user
https://stripe.com/docs/connect/express-accounts#handle-users-not-completed-onboarding
Interesting.
In what scenarios would details_submitted be true, but payouts_enabled would be false, and vice-versa?
The reason I'm asking as the docs that you linked are checking for multiple states
I am not 100% certain as I haven't tested this flow personally but as far as I know, for the time between the account submitting details needed and account getting successfully verified the details_submitted would be true but payouts_enabled would not be as the verification is still on going
Gotcha, much appreciated!