#Rupesh
1 messages · Page 1 of 1 (latest)
Hello there
When you say "checkout api" you mean you are using Stripe Checkout, correct?
Yes
Okay then when the customer completes the payment they will be redirected to your success_url and you want to build a UI on that page that indicates the order was successful and provides details to the customer.
No, I have a requirement that we confirm from the user that what they are ordering is what they want before completing the payment. So my question is, is it possible that we take the payment details and then have an additional step for confirmation before the payment is completed.
Ah I see
So the only way to accomplish this with Stripe Checkout would be to use mode: setup to collect the card details and then attempt to charge them after the redirect when the customer confirms they want to make the payment.
However, it is possible at that point that the payment fails and you would have to redirect them again for a new payment method.
It is also possible that in this flow they would have to complete 3DS twice
Oh, thanks, this is making the solution more complicated. let me check if we can have anything on our side before we redirect to Stripe checkout page
thanks
👍
Thank you