#reginbald_webhooks
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1445707963674267670
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
hmm, not really a way of knowing if a card is 'valid' without a direct action (e.g. a Setup/Payment Intent confirmation)
or invalid in your case. if you have an existing saved card for a customer the only way to know if it is still valid is to periodically do the above
Ok thank you, can I then just create a payment intent for a payment method that was created with a setup intent for 0$? Or do I need to create a payment intent with 1$ and then refund?
I think there is a minimum amount, just wondering if there is a way to do 0$
the recommended way would be to do another Setup Intent: https://support.stripe.com/questions/check-if-a-card-is-valid-without-a-charge
You can verify the card details, as well as see the results of the CVC and zip code checks, by saving the customer's card in Stripe. Additional…
which is in effect a $0 auth
Ok awesome! Does the customer need to confirm or can this just be done on the server side if the payment method was originally added with a setup intent?
Is there any user interaction needed that is
there's no way to mark a Setup Intent as off-session, no. so there may be customer 'approval' required if the bank requires it (e.g. authentication)
Ok good to know, thank you very much