stevec
stevec

Reputation: 52528

How to know if stripe connect connected user onboarding processes has completed or if it requires more information?

When onboarding a connected user for an Express account, they'll enter some info and be directed to the return_url.

But sometimes the user will reach this point without having completed all the info Stripe wanted.

What is the recommended way of knowing whether a user has/hasn't completed these onboarding requirements?

I cannot see it in the Stripe Connect (Express Account) Onboarding docs

What I already know

Though trial and error, I can set up an account and deliberately miss vital info that Stripe wants. For this account, I see "details_submitted": true and "charges_enabled": true so those two fields don't seem to help.

Question

What is the recommended way for the developer to know whether a user has completed all onboarding requirements?

Upvotes: 3

Views: 1666

Answers (1)

Paul Asjes
Paul Asjes

Reputation: 5857

You'd want to take a look at the currently_due requirements to see if there are any remaining details to collect before the account can be activated.

Upvotes: 4

Related Questions