#ravinder_api
1 messages ¡ Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- ravinder_api, 4 hours ago, 24 messages
- ravinder_api, 1 day ago, 52 messages
- ravinder_api, 1 day ago, 11 messages
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1235559501885607987
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, let me help you with this.
Basically setup_future_usage ensures, that, in most cases, when reusing the Payment Method, 3D Secure won't be required for off-session payments.
You can attempt to reuse a PM without setting it up for future usage (e.g. setup_future_usage or SetupIntent), but it's highly likely that most of your off-session payments will fail.
setup_future_usage also adds a note to the checkout that informs the customer that their payment details will be saved and potentially reused.
what happen if i attach pm to cutomer without passing setup_future_usage to payment intent, will payment fail if customer in checkout?
what about 3ds or other verification?
If a Payment Method is not set up correctly, the issuing bank might request 3DS during the off-session payment, so it will fail. This might not happen, but you'll never be sure.
what is i only use it for payment when customer is in checkout?
How are you planning to do this exactly?
as you can see this payment method is setup with future use, i am wondering how can i still use it for payment?
i want to prevent duplicate cards to attach to customer but i also want to make sure they should be able to rpocess payment if i use existing attached payment method
You can follow this step to charge the saved payment method: https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
Do you facing any issues when setting the setup_future_usage property?