#XFlow developer
1 messages · Page 1 of 1 (latest)
hello! can you share the PaymentIntent id which you're using?
gimme a while to get back to you
Like what you've already mentioned, only the PaymentMethods that respect / support those configurations are shown. For context, EPS, P24 and GiroPay all don't support recurring payments (i.e. setup_future_usage=off_session), that's why they're not showing as an option
e.g. https://stripe.com/docs/payments/giropay -> search for Recurring payments in the page
if you want to display those PaymentMethods as options, then you can't save the PaymentMethod for future usage (i.e. don't include setup_future_usage=off_session)
Makes sense, but my use-case is to show all Payment Methods, and if any Payment Method is saveable, then I want to save it so that I can show the saved Payment Method to customers for easy payments later. What do you recommend? Mount the Payment Element 2 times - one with off_session enables and other without it?
if that's the case, what you can do is to pass in setup_future_usage=off_session under the specific payment method for payment_method_options e.g. for card : https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_options-card-setup_future_usage