#sandy.nozaki
1 messages ยท Page 1 of 1 (latest)
๐ Yes it will go thru the same process. We also don't save CVC on our own
You can reuse the same payment method id
but wouldnt it be a new request like it would think its a new card therefore would create a new card_id?
No the CVC is like a separated information with a card or a payment method. You collected it and used with future PaymentIntent like this https://stripe.com/docs/payments/accept-a-payment-synchronously?platform=web#web-recollect-cvc
so youre saying we can use the card_id with just an updated cvc?
actually maybe i should explain how we do our charges...
so our buyers add their cards including cvc and we send that to stripejs which im assuming it goes to issuer to confirm the info and once verified, stripe sends us a credit card token. Card_id is inside the token. At the time of charge, we send the card_id to stripe which i think stripe matches the card_id to the card and sends it to the issuer to process.
but what we want to do is require the cvc when shipping address changes, so we plan to code it so itll require it if theres any changes in the shipping address. but when the buyers actually enter the cvc field with the saved credit card...will we still be sending the same card_id with the newly added(required) cvc to stripe?
Okie let me ask some clarify question. When you send the card_id to stripe, what API do you use to process the payment?
currently destination but will be migrating to SCT
Destination Charge? And are you creating PaymentIntent like this? https://stripe.com/docs/connect/destination-charges#create-a-charge
I see, thanks. When you use PaymentIntent, you would work with PaymentMethod (pm_xxx) instead of Card (card_xxx). There you will be able to pass the updated CVC like this https://stripe.com/docs/payments/accept-a-payment-synchronously?platform=web#web-recollect-cvc
ah icic but how about now? with destination and not using paymentintent
You are calling Charge API? I am afraid it wouldn't be possible ๐ค
ah so its only possible with paymentintent
also means recollecting cvc is not possible w charge api
Yeah i am afraid so
okok awesome thats the info i needed! yay
thank you!