#Cadu
1 messages · Page 1 of 1 (latest)
Hi, was the payment method saved for future transactions? If not, you can't...
hey there
I created a payment intent with installments
think like a e-commerce feature for example
a client wants to change his card which did the order for another one
Can you share the request id that created this payment? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
just a sec
here it is
request id: req_NBLdQA6AyinQzt
this one has installments equals to 3
after one month of the client sign his order, a client tries to change his card
is it possible for a payment intent?
second question: can I also do it to an active subscription? (change the card)
You cannot reuse this payment method, https://dashboard.stripe.com/test/logs/req_mi4n2KXNJVi0ac as you've not set this up when you created the Payment Intent. You'd need to specify: setup_future_usage: : https://stripe.com/docs/api/payment_intents/create#create_payment_intent-setup_future_usage to save the payment method during a payment.
Yes, you can update the payment method of an active subscription: https://stripe.com/docs/api/subscriptions/update#update_subscription-default_payment_method
ohhhh, I got it