#Franck-payments
1 messages · Page 1 of 1 (latest)
hi! well yes, certain payment methods can't be charged off-session, for example things like Giropay involve the customer being redirected to their bank to authorise the payment so that happens every time, so it doesn't make sense for recurring billing.
https://stripe.com/docs/payments/payment-methods/integration-options#additional-api-supportability in general covers what's possible(some payment methods 'decay' into SEPA, where for example with iDEAl you do the first payment with a redirect to iDEAL and then get the underlying bank details to charge later.
So is there no way for us to collect multiple payment_methods with Stripe to charge offline our users ?
there is!
Is it possible to filter and display only reusable payment methods on the Stripe Payment Element
it already does that by default, if you pass a PaymentIntent withsetup_future_usage, or a SetupIntent, to save details, it only shows the payment methods that are compatible with that.