#MartinGo
1 messages · Page 1 of 1 (latest)
It indeed works that way by default. No card information will reach your server
This is the frontpage Doc https://stripe.com/docs/payments/accept-a-payment
Thank you for your reply
So if we need to change the payment card for paying, like a card wallet in out product for users, how can we manage the card list and verify which card is using, how can we query the card in in stripe to show for our users?
It's something we are going to support in the future. But for now you can query the PaymentMethod with type = card belongs to a Customer, then displayed their last4 and let your customer choose from it, in your own UI
but in fact that, users can not verify which card is the right one based on the last 4 number😂
They should recognize themselves, no? 😅
for example~the same last 4 number
Hi! I'm taking over this thread.
You could also display the expiration month/year and things like that. You can see all the information available here: https://stripe.com/docs/api/payment_methods/object#payment_method_object-card
thank you for your infomation