#squirez_connect-account-onboarding
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/1400874718990438542
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Here are screenshot of what im seeing
This is the message i am seeing for the connected account
Hi ๐
When you say the connected accounts went through the Express workflow, what is the exact steps you are taking to onboard the connected account?
Sorry but the screenshots are not helpful
Can you tell me what APIs you are hitting?
What documentation are you following?
sure
let me find the api im using
give me 1min
Can i come back to this chat later
I think its going to take me longer than 1 min to find the API
i need to look at the code
so sorry ๐
Im using the following to generate the account_links.url
import stripe
account_links = stripe.AccountLink.create(
account = stripeuseraccount, #data[''],
refresh_url='https://www.fanryde.com/redirect.html',
return_url='https://www.fanryde.com/redirect.html',
type='account_onboarding',
)
Okay so you are creating an Account link. And you are using Express type accounts?
yes
Can you share an example account ID?
Thanks, taking a look
And what about the onboarding was different from what you expected?
I was expecting for the user to provide some form of ID for verification so their accounts can start receiving payments and payouts
Also if they done have verication currently
the remediation link / url thats provided
once a user gets into there account
there should be able to provide that information
identify verification is not necessarily required immediately
This depends on many differnet options when creating accounts
You can review what requirements are due by reviewing the requirements property on the Account object
ok thats fine and i understand that
but if the user wants to provide the verification using the remediation link
If you want to trigger more aggressive requirement collection, you can pass the collection_options.fields: "eventually_due" parameter
when we used the link
the connected account page wasn't showing where to provide the verification
We won't expose that UI unless it is required
oh ok
so for that account i provided
acct_1RrKrYEyYufTqTRL
are you saying that currently, verification isn't required from stripe currently
?
In the requirements property, I see
eventually_due: [
"individual.verification.document"
],
That means it will be due sometime relatively soon but it isn't a requirement right now
If you want to collect it, you can use the parameter I mentioned earlier when creating your account link and that will require the connected account to provide verification documents
- Yes
- You can check this yourself. If you retrieve the Account from the API you can look at the
capabilitiesproperty - for this account I see
capabilities: {
card_payments: "active",
transfers: "active"
},
This tells you the Connected Account can receive transfers from your platform and be involved in card payments
That's not a property on the Account object but if card_payments and transfers are active then payouts will be available
Sure thing! It's why we're here ๐