#CamperCat-payments
1 messages · Page 1 of 1 (latest)
@muted mulch usually you provide it on the frontend as part of 'confirming' the PaymentIntent
So lets say I create the paymentIntent on the server and return the client secret & the PaymentMethod to the frontend (in my case a app) the app will accept the payment do the 3D Secure and after that the payment is associated to a specific user because of the provided "PaymentMethod" ? Because In my case the user hast to register with his card information and we don't want to ask him for his card informations after register
you'd want to work with https://stripe.com/docs/payments/save-during-payment
you associate the PaymentIntent with a Customer object, and then yes, when you complete the payment on the frontend(with 3D Secure perhaps if that's needed) and the payment is done, we automatically save the card to that Customer object and you can charge it again in future
Is there no way to register a user in stripe from the frontend with card information's without charging him money ?
there is yes