#Kasuni
1 messages · Page 1 of 1 (latest)
Hi there!
You mean you already have a card saved for the customer, and want to know how to charge the customer with these cards?
i have 2 customers. one customer have Type 1 card , another customer has Type 2 card
yes i need to how to charge from those
as both cards have different authentication conditons
I made a mistake Type 2 card is - 4000002760003184
And both of these customers already have the card saved into Stripe?
yes
Then you create the PaymentIntent on the backend with the existing payment method and confirm:true. if the payment succeeds, then great. if the payment is in requires_action, then you need to use https://stripe.com/docs/js/payment_intents/confirm_card_payment#stripe_confirm_card_payment-attached on the frontend to go through the 3DS flow.
You can learn more about this here: https://stripe.com/docs/payments/save-and-reuse?platform=web#charge-saved-payment-method
from the method you mentioned, why this card 4000002500003155 also asked to authenticate, with the reuquire_action?
because it was already setup
If you check the documentation page about this card: https://stripe.com/docs/testing#authentication-and-setup
After you set it up, off-session payments no longer require authentication.
But here I'm guessing you are doing on-session payment, that's why.
oh
got it
Hey, when we tokenise the CVC is it avoid re- authenticate while paying from saved cards?
Sorry I don't understand the question. Can you rephrase?
i am refring this doc -https://stripe.com/docs/payments/accept-a-payment-synchronously#web-recollect-cvc
bit confusing in this diagram , which says no authenticatin required
Can you bit explain this point? is it allow us to make a payment withou authenticate?
I wouldn't recommend to follow the "Accept card payments without webhooks" doc.
Our best guides on how to accept payments are these two:
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So what is your question?
here what would be the objective and any benifits using theis tokenise CVC
It's mentionned on the page you previously linked:
When creating subsequent payments on a saved card, you may want to recollect the CVC of the card as an additional fraud measure to verify the user.
But in practice I don't think you really need to do this.
Hey, taking over here. Let me know if there's any follow-up Qs I can answer!
is there any way to stop re-authenticate when paying using saved cards? like 4000002500003155
That card requires to be authenticated unless set up. You can set it up using SetupIntent:
https://stripe.com/docs/testing#authentication-and-setup
I think this was mentioned above with my colleague.
yes you can't
but is this can help https://stripe.com/docs/payments/accept-a-payment-synchronously#web-recollect-cvc ?
to skip the authenticate?
there ,we take cvc in every payment to verify the saved card right?
yeah and that' won't skip the 3DS authentication
hmm