#binod-sepa
1 messages · Page 1 of 1 (latest)
I am trying to use SEPA with iDeal payment for future payments
Looking at docs, I had some questions
What are those questions?
according to doc, SEPA payment ID needs to be attached with customer. I can see there is a process to save(attach) SEPA payment ID with customer using PaymentElement
my question is, once I have setup the SEPA payment method, How do I use for future payments?
correct me I have misunderstood the process
??
Once it's been attached to the customer, you can use it in future Payment Intents that are also for that customer
Or are you referring to future subscription payments?
yes, future subscription payments
for iDeal payment Im assuming stripe sends an invoice for recurring payments. But, If SEPA is setup subscription should be auto renewed right? without needing to send an invoice
Yes, once you have the SEPA payment method set up you need to attach it to the customer and set it as the default (at invoice_settings.default_payment_method) for it to be used automatically for their subscriptions
which API do I use to set it as default and when?
https://stripe.com/docs/api/customers/update#update_customer-invoice_settings-default_payment_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
okay, so If customer has a default_payment_method as SEPA ID, subscription will be automatically paid and renewed?
hello?
This is a channel where we talk to a bunch of users at once - I'm not able to always give you an answer immediately
and yes, if the customer has a default_payment_method set then the subscription will attempt payment with that payment method when it renews
ok, what if customer pays with card and also add SEPA ? which payment option will be used? Because, stripe also saves card details for auto renew so.
Well it depends on which one is set as their default - you can only set one default for the customer
Im using this option while creating subscription with card
payment_settings: { save_default_payment_method: 'on_subscription' },
Now if I add SEPA, card details will be replaced by SEPA ?
for default payment
Yes, that's correct
oh okay, thanks for your time!