#kayzer-Invoice
1 messages · Page 1 of 1 (latest)
Hi there, is it an one-off invoice created by your, or is it an invoice generated by subscription?
it's and invoice created by a subscription
OK. Stripe will retry the payments a few more times according to your settings https://stripe.com/docs/billing/subscriptions/overview#settings, and it's status will be canceld, unpaid or past_due.
There's also an option for you to send customer email about payment failure, the email has a link for them to update payment information
the use case here is if the customer has multiple payment methods attached to him, is it possible to switch between them if the used one failed
You can programmatically call the invoice pay API, and specify the payment_method that you want to use to pay this invoice (https://stripe.com/docs/api/invoices/pay?lang=node#pay_invoice-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.
thanks jack, i will try and back to you