#hotmongoose_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/1224591926716792886
๐ 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.
- hotmongoose_best-practices, 5 days ago, 14 messages
- hotmongoose_error, 5 days ago, 19 messages
There is no such parameter as connected_account. If you want to List Payment Intents on a connected account, Stripe-Account header should be used instead: https://docs.stripe.com/connect/authentication#stripe-account-header
okay thanks,
when we do a payment intent flow for a onboarding account,
when and how does the user (who is doing the payment ) pays where they can select the card, etc from the UI ?
My flow is
create account -> onboard account -> create new payment intent with transfer data -> confirm payment intent.
What time of connected account are you using? Standard, Express or Custom?
express
Thanks! I'd recommend Destination Charges for Express connected account. The integration flow will be:
- Create a Payment Intent with Destination Charge: https://docs.stripe.com/connect/destination-charges
- Use Payment Element to collect payment method to complete payment (Use Step 1 for Payment Intent creation step) : https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements
-
Also for the legal reasons in the country, we don't want to hold any transaction on the platform ID.
we directly want to transfer everything to the merchant ID which we onboarded, don't want to hold anything or any charges for the platform. This flow is exactly like this , right ? -
when we create an account and say there is no redirection or some reason browser is closed, how can I check which user in my platform created an account, can I add some type of identifier to that account while creating it?
Hi need to know whether stripe will send any mail if the coupon codes created is expiring
I am not sure what coupon code is.
@elfin folio looks like you're in the wrong place, this thread is for someone else's question.
- If you have your own thread please chat there.
- If you have a question or a followup to a closed thread use one of the buttons in https://discord.com/channels/841573134531821608/842637025524842496 to get help (we don't reopen closed threads).
Note that posting inappropriate messages in other people's threads is against the rules. No worries if this was just an honest mistake, but anyone who violates the rules multiple times will be removed from this server.
Also for the legal reasons in the country, we don't want to hold any transaction on the platform ID.
Destination Charges will create payment on the platform first, then transfer to the connected account. Platform will be liable for fraud and dispute
when we create an account and say there is no redirection or some reason browser is closed, how can I check which user in my platform created an account, can I add some type of identifier to that account while creating it?
metadatacan be used to store information for you own reference: https://docs.stripe.com/api/accounts/create#create_account-metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
"Destination Charges will create payment on the platform first, then transfer to the connected account. Platform will be liable for fraud and dispute"
This is for both express and standard ?
Also is there a way to avoid create payment on the platform first and instead directly transfer?
Direct Charges on Standard connected account will allow create the payment directly on the connected account and the connected account will be liable for fraud and dispute. No payment will be created on the platform with this flow unless the platform collects application fee. Here are the guides:
- Standard connected account: https://docs.stripe.com/connect/standard-accounts
- Direct Charges: https://docs.stripe.com/connect/direct-charges
"Direct Charges on Standard connected account will allow create the payment directly on the connected account and the connected account will be liable for fraud and dispute. No payment will be created on the platform with this flow unless the platform collects application fee. "
Can I do this with express account as well ?
This is not recommended. Express account doesn't have the access to full Stripe Dashboard to manage the payments. Express Dashboard doesn't support refund and dispute functions
okay thanks.
""Direct Charges on Standard connected account will allow create the payment directly on the connected account and the connected account will be liable for fraud and dispute. No payment will be created on the platform with this flow unless the platform collects application fee. "
- even thought it is not recommended for refund and disupte, can I still use this as stated message above.
- after onboarding , is there a way to login merchant account to stripe in both standard and express ?
even thought it is not recommended for refund and disupte, can I still use this as stated message above.
How should the express connected account manage the payments if they have no access to the Dashboard to manage the payments?
after onboarding , is there a way to login merchant account to stripe in both standard and express ?
Standard and Express connected account uses different Dashboards - it'll depend on the connected account type uses
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
"Standard and Express connected account uses different Dashboards - it'll depend on the connected account type uses".
I want to know for both
also I can still use express to take a payment from a customer for a merchant.
this is without dashboard,
"Direct Charges on Standard connected account will allow create the payment directly on the connected account and the connected account will be liable for fraud and dispute. No payment will be created on the platform with this flow unless the platform collects application fee. "
I just want to know if this also applies to express accounts.
Direct Charges should only be used with Standard Accounts
thanks for the standard account.
now when I onboard a merchant, where and how the merchant can login to see their profile?