#vincent_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/1349154567908098088
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! The answer depends on several factors specific to your integration. What kinds of connected accounts are we talking about? Want countries are they in? Things like that. I recommend you ask Stripe support this kind of question, as it's more in their wheelhouse: https://support.stripe.com/contact
Hey there! These are Customer Connect Accounts operating within the United States
Okay, but what kind? Are you using account types like Standard/Express/Custom? Are you using controller properties? How are the accounts being created?
Oh, drat, typo on my part
Meant Custom account types
New accounts are created using Stripe::Account.create and then our users are sent through Connected Onboarding to complete account creation and verification. I don't think we are using controller properties. We specifiy everything in the Stripe::Account.create payload
Ah, okay, so generally speaking in that case you can specify information up front when you create the account, some of which can be added or modified during onboarding, and then you can make modifications later via the API. With Custom accounts you have complete control over this aspect of the connected accounts.
Ah ha, got it! Are the merchant's themselves able to update it after the fact? Or is that something only we as the platform account can do?
With Custom accounts you're responsible for providing Custom account holders with the ability to update these details. You can do that in various ways, like setting up Connect Embedded Components on your site or by making API calls directly. Custom accounts have no Dashboard access, so they can't do it themselves.
We provide access to Connect Embedded Components and I see that 'Legal business name' and 'Business name' are editable, so safe to assume they can continue editting it after initial submission
Yep.
Right on, thank you very much!