#midnightcrow
1 messages · Page 1 of 1 (latest)
Hi 👋
Would this be while the Invoice is still auto-retrying or after all the auto-retries have been exhausted.
while its still retrying
In that case there are two settings that coul determine what payment method is used.
-
If you set a default payment method directly on the Subscription, that will still be charged https://stripe.com/docs/api/subscriptions/object#subscription_object-default_payment_method
-
If you haven't, the
invoice_settions.default_payment_methodon the Customer will be used <- if you update this then the updated PM will be charged.
https://stripe.com/docs/api/customers/object#customer_object-invoice_settings-default_payment_method
ty