#squirez_connect-account-onboarding

1 messages ยท Page 1 of 1 (latest)

zealous rainBOT
#

๐Ÿ‘‹ 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.

rugged fulcrum
#

Here are screenshot of what im seeing

#

This is the message i am seeing for the connected account

gritty pond
#

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?

rugged fulcrum
#

hi

#

just sending you a few more screen shots

gritty pond
#

Sorry but the screenshots are not helpful

#

Can you tell me what APIs you are hitting?

#

What documentation are you following?

rugged fulcrum
#

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',

)
gritty pond
#

Okay so you are creating an Account link. And you are using Express type accounts?

rugged fulcrum
#

yes

gritty pond
#

Can you share an example account ID?

rugged fulcrum
#

sure

#

acct_1RrKrYEyYufTqTRL

#

thats the account ID

gritty pond
#

Thanks, taking a look

#

And what about the onboarding was different from what you expected?

rugged fulcrum
#

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

gritty pond
#

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

rugged fulcrum
#

ok thats fine and i understand that

#

but if the user wants to provide the verification using the remediation link

gritty pond
#

If you want to trigger more aggressive requirement collection, you can pass the collection_options.fields: "eventually_due" parameter

rugged fulcrum
#

when we used the link

#

the connected account page wasn't showing where to provide the verification

gritty pond
#

We won't expose that UI unless it is required

rugged fulcrum
#

oh ok

#

so for that account i provided

#

acct_1RrKrYEyYufTqTRL

#

are you saying that currently, verification isn't required from stripe currently

#

?

gritty pond
#

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

rugged fulcrum
#

ok i understand

#

is that account able to recieve payments in its current state?

gritty pond
#
  1. Yes
  2. You can check this yourself. If you retrieve the Account from the API you can look at the capabilities property - 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

rugged fulcrum
#

how about payouts?

#

Also thank you for your help ๐Ÿ™‚

gritty pond
#

That's not a property on the Account object but if card_payments and transfers are active then payouts will be available

rugged fulcrum
#

oh ok

#

thank you

#

i really appricate it

gritty pond
#

Sure thing! It's why we're here ๐Ÿ™‚