#abeng_best-practices
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/1491417717469872200
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
👋 Hi there! No, there isn't a way to do this
that’s unfortunate, what are the alternatives to this? or is it something that goes against Stripe?
It's just not something that's possible without making a real charge. The card issuing bank decides at the time whether to approve or decline the payment. There's not a way of checking whether a card is still active
Is there a reason why you can't just attempt the charge on the card?
Usually we only charge when there’s a breach in their contract. So if we attempt a charge and find out the card is invalid and then the business is ignoring us then it causes more problems. So management wanted us to check these idle cards routinely to ensure that when it happens we are able to charge them. 😅
Is it not possible to readd the existing cards? cause it seems like it checks validity when saving the card for future use
Yeah, that's not possible since you'd need the customer to enter their card number in order to set up the card again
The customer has to be present to enter the card number, and go through any authentication steps, depending on their bank
And, as the support article mentions, this just checks that the card details are likely valid — not necessarily that you'll be able to successfully charge it
I see. So the only realistic way is to charge these cards right? is it possible to do like a zero dollar charge?
No, there's a minimum charge value: https://docs.stripe.com/currencies#minimum-and-maximum-charge-amounts
Thanks! Question: Will our account get flagged if we do these charges with consent from the business?
Hello
Generally we recommend using SetupIntent to validate and save the cards. Charging the card and refunding it later would cause high refund rate on your account.
I see, so it’s best to ask the user to re-enter the card details then in order to use the setupintent?
correct
Great! thanks we can close this now ☺️