#bkrnetic
1 messages · Page 1 of 1 (latest)
👋 Thanks for reaching out
Why are you updating the customer's default payment method each time you have successful payment ?
In our system, we allow users to have 1 card at a time. If at some point user uses another card, we want to keep it as default and our users are aware of it.
Ok I see. Then, you should save the PaymentMehtod for each customer :
https://stripe.com/docs/payments/save-during-payment?platform=react-native&ui=payment-sheet
You keep charging it and you update it with another one only when a user chooses to change his Payment Method
Hmm, ok. Thanks, have a nice day!