#Kdev-saved-pm
1 messages · Page 1 of 1 (latest)
Hello 👋
Can I ask How are you saving the card? Typically, when you save a card for later use, the card is attached to a customer object on Stripe. Then you can pass that customer ID whenever you attempt a payment
using PaymentIntent
I am going to retrieve Customer with saved customer id. Am I right?
Then which paymentMethodId do I have to use to create new paymentIntent?
just clarifying, you fetch PaymentMethods on a Customer to get the PaymentMethods a Customer has: https://stripe.com/docs/api/payment_methods/customer_list?
and then you let the customer pick a PaymentMethod, they could have multiple PaymentMethods saved
In this case, do I have to use web-hook?