#svgteam_docs

1 messages · Page 1 of 1 (latest)

light raptorBOT
#

👋 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. Thank you for your patience!

⏱️ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.

🔗 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/1214334675640918089

📝 Have more to share? You can add more detail below, including code, screenshots, videos, etc.

neon tideBOT
rose lintel
#

Hi there! Yes, users going through Hosted Onboarding for Express will be prompted for their business details, including an address

#

I recommend testing this out!

tropic elbow
#

I just tried the onboarding flow that I created and it only asks for bank details. I didn't see an option to enter business details.

#

This is my code to create a stripe account:

const account = await stripe.accounts.create({
country: 'US',
type: 'express',
capabilities: {
transfers: {
requested: true,
},
},
business_type: 'individual',
});

And this is my code to get the stripe express onboarding url:

const accountLink = await stripe.accountLinks.create({
account: accountId,
refresh_url: 'some_refresh_url,
return_url: 'some_return_url,
type: 'account_onboarding',
});

return accountLink['url']
rose lintel
#

Thanks! It looks like an individual's address is only required if the card_payments capability is also requested. It's not needed if you're requesting transfers only

tropic elbow
#

I link the user to the express dashboard after they sign up. I don't see an option for the user to update their address. Is it possible to do it on the express dashboard? If not, do you have a recommendation on how we can allow our userse to update their address?

#

Oh sorry nevermind I do see it

neon tideBOT
tropic elbow
#

So I onboarded my account and now I want to retrieve the address that I entered during the onboarding process. I followed the code here: https://docs.stripe.com/api/accounts/retrieve?lang=curl

But when I retrieved my account details, I do not see the address. Is it possible to retrieve the address entered during onboarding?

lime mural
#

Hi, stepping in and catching up.

tropic elbow
#

Okay thank you!