#KyleWoolstenhulme - Loan Pro
1 messages · Page 1 of 1 (latest)
When you say you're using the payment method w/ a payment intent later, how much later do you mean?
Could be like 5 minutes, Could be 5 hours, Could be 5 days? Mainly i just want to create a payment method, store it and then create the payment intent whenever the payment needs to be processed. Could be a variety of time before it would need processed.
Gotcha!
So really what you should be doing is using a SetupIntent with the Payment Element in order to guarantee that the payment method you're saving is properly configured to be used in the future (https://stripe.com/docs/payments/save-and-reuse)
It also looks like we could use the payment intent and use the parameter Setup_future_Usage and that would perform the same function as using setup intents? Is that correct?
You'd only want to use PaymentIntent w/ setup_Future_usage if you're collecting payment immediately
Thank you.
Can you also answer if Payment_method_data.card.cvc is a required field when creating a card. I think its optional. but just want to confirm.
If you're using PaymentElement then as far as I know it'll always ask for CVC
In some instances we will. But in some, we are also just sending the raw pan data when creating a payment method.
If you're sending raw PAN data then no, CVC isn't required (but we do still generally recommend that you send it https://stripe.com/docs/disputes/prevention/best-practices#collect-information)
Thanks for all your help!!