#Jeffrey
1 messages ยท Page 1 of 1 (latest)
Hi ๐
Yes you can configure the setup intent to save the payment method configured so that it is intended for future off-session usage. We outline this process here: https://stripe.com/docs/payments/save-and-reuse
this how we are doing it and I can see that it gets stored for off-session payment but even then there is a high number of payment that want a 3D secure code when sendind the paymentIntent from the server side
Looking at your PI creation, you are not passing OffSession: stripe.Bool(true),
This is necessary to let the API know the customer is not on-session
thx
do I need to add this in the setup intent and the payment intent?
just in the paymentIntent that is running on the server if the docu is providing it correct ๐
That is correct
Ok I will try this, thx