CVC Authentication with Registered Card Stripe

I am currently using stripe and asking the client to register the card (via stripe).

After the first check, the customer registered his card. This client can reuse this card for another verification, and I want to set CVC / Card Security Code

to prevent low security passwords.

Is there a stripe api call for this "CVC authentication"?

thank

+3


source to share


1 answer


Unfortunately, there is currently no way to do this with Stripe. There is no API you can call that will use the saved card and where you will transfer the CVC so that it is sent to the bank and verified again.



You either need to request full card information again, or just rely on the saved card. When you create a customer and a map, you can check if it is installed cvc_check

on pass

to CVC has been sent and confirmed by the bank, so you do not have to request it again in the future.

+5


source







All Articles