#Cvijo
1 messages ยท Page 1 of 1 (latest)
Hi ๐ are you working with Account Links or our OAuth flow?
other word is how my platform knows i can start using this connected account and create chekcout sessions for it
account links
i mean i read it is recommended way
to use account links
and what will happened if custmoer already fill out onboarding and he click to generate link to connect again on my platform .. what will happened with previous onboarding .. will this new one override previous onboarding?
Sorry for the delay, the server has been particularly busy today.
np toby, Stripe support and discord is best support i have ever seen
Aw, thanks! I'll make sure to pass that along to the team! ๐
When looking at a Connected Account, there are a couple fields that you'll want to check to see what the account is allowed to do, then you can determine whether it has enough capabilities to complete the flow that you want.
i think ill need charges_enabled for start i guess
charges_enabled and payouts_enabled are good places to start:
https://stripe.com/docs/api/accounts/object?lang=python#account_object-charges_enabled
They tell you whether the account is allowed to process payments, and then receive the funds from those.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Jinx
If you're request additional capabilities for your accounts as part of your flow, then you can check the capabilities hash to see the current state of those.
so if those 2 are true i am fine to start using that account for payments
and what will detail_submitted flag give ma as information .. it can be true or false
I'm not sure off-hand what that field maps to, but I don't think I've seen it be needed for most flows.
and 1 more question about links .. if our connected client fill out onbaording and we generate new link in some way what will happen if he start that new account link ?
If the account cannot process charges or payouts, then the requirements hash should give you insight into why. You can check the disabled_reason and the other fields in there.
It depends on the type of Account Link that you generate, if you create an account_onboarding link then the hosted page that the Connected Account goes to will prompt them to provide any outstanding requirements.
yeah i guess that i already print those info on our platform with requerments eventually due, currently due and disable_reason .. thank you toby .. i got answers i need as always .. great work guys on support and how helpful you are
Always happy to help, thank you so much for you patience.
๐