#maverickdoge_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1355189642605101166
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- maverickdoge_api, 20 hours ago, 73 messages
- maverickdoge_connect-onboarding, 3 days ago, 6 messages
... Should I base the UI for updating information on "requirements_currently_due"? I don’t think that’s the right approach since the user creates the account and goes through onboarding. Many requirements still appear in that array even though "charges_enabled" and "payouts_enabled" are enabled, and everything is working.
Or should I determine the UI behavior based only on "charges_enabled" and "payouts_enabled"? I'm just not sure what the right approach is.
Hi, taking a look here
Are you able to reword your ultimate ask here? I'm not following
like i not sture based on which information i should notify the user to ""
provide the needed infomation so "charges" and "payouts" stay enabled
because eventually user has to provide some information needed since he is not going through the full onboarding
enabled is using "currently_due" for onboarding and "completed" using "eventually_due"
Yeah, you'd use eventually_due: https://docs.stripe.com/api/account_links/create#create_account_link-collection_options and future requirmenets as well if you'd like: https://docs.stripe.com/api/account_links/create#create_account_link-collection_options-future_requirements to collect all the information needed upfront.
What you're using is the right approach for what you're looking to do.
yes I figured that out. But what I want to know since its no where in docs i could found, based on what data should i redirect user to update some information or simply how can I know that stripe needs some information from the connected account to continue working?
At which point? If you're already collecting the data, you're collecting all the eventual data needed. If things change on the accounts, you can listen to: https://docs.stripe.com/api/events/types#event_types-account.updated and inspect whether there is anything currently due that they need to provide.
- I want to use the option "currently_due" and not "eventually_due", because of that the connected account will need to provide the needed information at some point.
- Now i need to know when stripe nneds that information. So i am storing the connect_account data in my db. and listening for account.update webhooks. Now in the picture u can see a example for a connected acoount who did onboarding and has all needed enabled and all is working. But requirments are still full with many points but stripe not needs them now so no need to send user to update ot provide some information.
now simply, when should i know that stripe needs some infomation from the connected account if it cannot be requirments?
You would listen to that event, and can inspect what is required under 'currently_due'
Respectfully, are u even trying to understand what i need to know. Like what are u even talking about. Look ate the images. currently_due so it can't be based on that.
If u dont know just maybe redirect to someone with more knowledge about it
Let's step back. Can you confirm that you're questions is, when Stripe needs additional information on the Connected Accounts, how would you know to pass that data. Is that correct? If not, can you clarify your ask.
Not how, but when should I redirect the user to provide more information.