#jatinpatel0708_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/1300684824914427947
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, I need to create a transfer from my Stripe account to a connected account, as well as a transfer from the connected account back to my Stripe account.
Error Message: Cannot create account debit on this account; please contact us via https://support.stripe.com/contact with details for assistance.
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Here is the New Updated Request ID Link:
https://dashboard.stripe.com/acct_1QCwoxIOUPBFuypI/test/logs/req_So8hEOp4LRjGAw?t=1730178181
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
https://docs.stripe.com/connect/account-debits you can only use account debit on express or custom accounts, not standard accounts.
Okay
Thanks, Jack
How can I change a connected Standard account to an Express account?
No you can't change the account type
Okay, Thanks Jack
Hi Jack,
I have a quick question regarding the status of the connected account. I’ve integrated an Express account, but its status shows "Enabled." Does this mean it has been connected successfully? In contrast, the Standard account status shows "Complete."
Could you please explain the difference between these statuses or share a documentation link for my reference?
Thanks!
Sure you can find your answer here https://docs.stripe.com/connect/dashboard#status-badges
Thanks
I’m trying to create a Stripe Connect Express account, but I'm unsure which code snippet to use.
Snippet 1:
$stripe_account = $stripe->accounts->create([
'country' => 'US',
'metadata' => [
'HOOK_TYPE' => 'SELLER_CREATE_ACCOUNT',
'uuid' => $seller->uuid,
],
'type' => 'express'
]);
Snippet 2:
$stripe->accounts->create([
'country' => 'US',
'email' => 'jenny.rosen@example.com',
'controller' => [
'fees' => ['payer' => 'application'],
'losses' => ['payments' => 'application'],
'stripe_dashboard' => ['type' => 'express'],
],
]);
I am receiving a message on the Stripe Connect account details screen. Which code snippet should I use to successfully create a connected Express account?
Both works, the next step is to start onboarding by filling the necessary information for the connected account