#Santosl2c
1 messages · Page 1 of 1 (latest)
🙂
I need to create a user payment system, right? However, i need to check if the user has a limit in your credit card before the transaction
I some websites, the system makes a fake billing to verify card
its is possible?
Hmm yeah you can't really check the transaction limit of a card. You can use a SetupIntent to validate the card with the issuer, but that doesn't guarantee anything about a transaction limit.
Or is there something similar thing to do this?
Hmm nice
https://stripe.com/docs/payments/save-and-reuse is the flow you want
That allows you to collect a card and validate it ahead of payment later on
It does not guarantee that the payment later on will succeed though.
The issuer could still decline the payment that you make in the future.
But it is the correct flow to collect a payment method and charge it later.