#prabhaw-soti-ebpearls_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/1216965870925123666
📝 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.
- prabhaw-soti-ebpearls_unexpected, 18 hours ago, 23 messages
- prabhaw-soti-ebpearls_api, 5 days ago, 21 messages
- prabhaw-soti-ebpearls_webhooks, 5 days ago, 11 messages
hello! you can take a look at this as an example : https://jsfiddle.net/v3nkm4n/cvyLjumn/7/, once you have the btok, you can pass it into https://docs.stripe.com/api/external_account_bank_accounts/create
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 there list of people to be created for company
you can use this API to create a Person object : https://docs.stripe.com/api/persons/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and whic person can have same access like owner and representative or owner ( i just need company that have only own owner and same for other filed for now)
can you write down step to do so ( i try all by docs but always says person is required even i add it ) and
is there a reason why you don't use Account Links i.e. Stripe's hosted onboarding page which will collect all of the necessary info for the custom account?
client have to login every time so ( we are creating client from app side backend )
Account Link doesn't require a login. Your server can generate the Account Link every time when collecting onboarding information is required
but my Engineer manager says it should be custom design so we are using custom ( can you send me example of both) standard and custome
and we are using ios
For custom connected account without Account Link, you can follow the guide here: https://docs.stripe.com/connect/required-verification-information
it always shows capability missing in standard
await stripe.accountLinks.create({
account: account.id,
refresh_url: 'https://example.com/reauth',
return_url: 'https://example.com/return',
type: ‘account_onboarding’,
});
what should be refresh_url and return_url
for ios app
Are you using Custom or Standard connected account?
i m trying for standard first ( if it don't need stripe login to create connect account)
I'm not sure what you mean by it doesn't need stripe login to create connect account - Standard accounts have their own Dashboard and are responsible for providing their own details for required information.
what about it?
i create auto link and it's firs page shows this
refresh_url: 'https://example.com/reauth', what should be actually refresh_url
before we go to the question about the refresh_url, lets first agree on what account type are you using
Standard accounts also need to create login credentials i.e. provide an email and password, as well as a mobile number to secure their account
standard
we will got with standard if
if user don't need to create account sience customer is created from api of our
Here's the explanation of what refresh_url is: https://docs.stripe.com/connect/standard-accounts#refresh_url
It's an endpoint in your server that will create a new Account Link when above scenario listed in the doc is met
does this process need (login like i have send )
Yes
so user need to login or enter phone
Yes
then requirement is customer ( can you send me all step i have to do to create so )
like
step 1: create account for company
step 2: create connect accoutn
step 3: crate person for connect account
step 4: add person to connect account
step 4 : create external account
With Standard connected account, you shouldn't be going through the above steps. Hosted onboarding page will collect those onboarding information for you.
i mean in custom account ( if user need to login and enter phone then we will loose user so we are using custom)