#bcodez
1 messages · Page 1 of 1 (latest)
Hi, let me help you with this.
No, that's not possible. You can create your own interface where the customer would choose among using their saved Payment Method, or be redirected to a Checkout Session.
Thank you for your help!
I have my own interface that the customer can select from their saved payment method but that is where I am stumped. How do I use that saved payment method to checkout with?
You don't need a user interface to charge a saved Payment Method, you can just create and confirm a PaymentIntent: https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
So for the backend I would just create a PaymentIntent and charge the saved payment method. Then for the customer side of things I would just display a custom checkout page but not using a stripe checkout session?
You don't need any UI whatsoever. You can just display the amount and a "Pay" button, then your backend will do the job.
Or even do it without customer's presence.