#syoxiss_code
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/1219206813195436123
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- syoxiss_webhooks, 4 days ago, 13 messages
That means that there are still some information needs to be collected, and you can check the account's requirements hash to find out https://docs.stripe.com/api/accounts/object#account_object-requirements
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But I need it in standard stripe connect account and not custom
Hey! Taking over for my colleague.
What you are facing is expected
Connect Onboarding doesn’t ask for the prefilled information. However, it does ask the account holder to confirm the prefilled information before accepting the Connect service agreement.
So you can't skip the steps prefilled because the connected Account need to confirm what you prefilled for them in any cases
I did pre-fill that but during onboarding, all pre-filled infomration except email vanished
Below is my code:
const account = await this.stripe.accounts.create({
type: 'standard',
country: 'AU',
email: email,
business_type: 'individual',
individual: {
first_name: 'John',
last_name: 'Doe',
dob: {
day: 1,
month: 1,
year: 1990,
},
address: {
line1: '123 Main Street',
postal_code: '2000',
city: 'Sydney',
state: 'NSW',
country: 'AU', // Explicitly setting the country is good practice, though it should default based on the account country.
},
email: email, // Individual's email, likely the same as the account email.
phone: '+61400000000', // Individual's phone number.
},
external_account: {
object: 'bank_account',
country: 'AU',
currency: 'aud',
account_holder_name: 'John Doe',
account_holder_type: 'individual',
routing_number: '110000', // Australian BSB number
account_number: '000123456', // Bank account number
},
});
Yes, I see, but the while onboarding the connect Account, they'll be redirected to the first step