#sai045_best-practices
1 messages ยท Page 1 of 1 (latest)
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.
- sai045_best-practices, 1 hour ago, 5 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1261257852035534911
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
๐ happy to help
the wallet going below 5$ is part of your application
so getting a trigger of that event should happen on your end
and once that is triggered you would only call Stripe to charge the saved PM https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
So, triggering the PM will just be an api call and do not require any redirect to payment page am I right?
And also, is there a way a customer will have multiple PM and I can trigget the Payment Intent using one after another, 1 failed I will try with another, or is this can also be managed on the stripe end?
Hey! Taking over for my colleague.
triggering the PM will just be an api call and do not require any redirect to payment page am I right?
Unless if the bank issuer decided to trigger a 3ds (it's rare but it's possible)
And also, is there a way a customer will have multiple PM and I can trigget the Payment Intent using one after another, 1 failed I will try with another, or is this can also be managed on the stripe end?
Yes it's possible
Cool, how can I manage multiple PMs on stripe?
Also, can I get an example on how to trigger the Payment Intent
how can I manage multiple PMs on stripe?
The guide my colleauge shared with you is a good starting point:
https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
You list all the available payment method attached to a customer, and then create a payment_intent and attempt payment by payment
Cool, thanks man
Happy to help!