#mayuri_error
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/1339822184507510795
đ 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.
- mayuri_error, 14 hours ago, 83 messages
Can you share the request id? req_xxx from https://dashboard.stripe.com/test/logs
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
@lusty locust are you there?
Hey, my colleague will be helping soon. Please give them a few mins to catch up
Okay
Hi! For Express connected accounts, the platform is liable for Stripe fees and negative balance. So you need to update your request to the parameters below:
- controller.losses.payments: application
- controller.losses.fees: application
Actually, my platform account is in UAE and i am trying to create connected account with UAE. so face some error and contact to support team and they have provide one solution, and i apply it. and it's wroking , but there is one more issue is raised which is , if i try to create conneted account via api with type of standard it's created but i want some information like bank detail, etc. from that account. so for that stripe provide one remidation link, which can share to that account owner and he will fill reauired details. but in my case it's forces to create new account cause of my account type is standard. so i am trying with express account type, it throws mentioned error,
can you please try to provide solution for same?
for that as well i contact with stripe support, and they are asking that standard type of account issue. and also asking that create maually from stripe dashboard. but it's working for one account. but i have multiple account to create in stripe with account type standard.
@worn birch Could you please help me to figure out this issues?
this is really very crucial for me.
I will be with you in a moment.
Okay, thanks
Have you tried to update your Express creation request with the updates I provided above?
Looks like Express is not available in UAE: It is not possible to create UAE connected accounts where the platform is liable when the connected account can't pay back their losses.
(https://support.stripe.com/questions/connect-availability-in-the-uae)
In this case lets focus on your previous issue with the Standard connected account.
Okay
You mentioned you're forced to create new account. Can you tell me step by step what do you do and what happens at each point?
This is still an Express account. You want to create a Standard connected account correct?
sure,
step 1: i execute this request
const stripeAcc = await stripe.accounts.create({
country: 'AE',
email: process.env.SHOP_HANGOUTI_EMAIL,
controller: {
fees: {
payer: 'account',
},
losses: {
payments: 'stripe',
},
stripe_dashboard: {
type: 'full',
},
},
});
so it's create connected account in stripe
step 2: i need remmidation link to setup this account so i go to connected account -> request information and it's give me one link which i can share that to my business partner to setup account
https://dashboard.stripe.com/account/status
after click on this link, it's redirect to login page
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
but query is i create that account, then how that user have creds?
when i check same thing in test mode with type of express it's generate this type of link : https://connect.stripe.com/d/setup/e/_RlYqszRQXQnmuKeDlQLFUMBjY6/YWNjdF8xUXF2SzAyTHl0YkVrdjQ3/d5ff074f2057c9ab6
but in live mode the account type is standard and it's generated this link : https://dashboard.stripe.com/account/status. which is clear that it's forces to create account
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
so , if i want to create a account then why connected account is there in stripe?
did you get my query?
@worn birch
I do, I am looking at it.
Okay
I would suggest using this method to get your Standard connected account onboarded: https://docs.stripe.com/connect/standard-accounts
The steps start with what you are already doing: Create a standard account. And then you create an account link that directs them to a Stripe hosted page to collect all the pending information.
Okay