#delgesu1745
1 messages · Page 1 of 1 (latest)
You should be able to call: https://stripe.com/docs/api/invoices/mark_uncollectible
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Can't remember if you need to finalize the invoice first though. Recommend trying in test mode
Yeah you can’t call that method in draft status.
Can I finalize the invoice without actually processing a charge?
You can. Should just be able to pass auto_advance = false when finalizing: https://stripe.com/docs/api/invoices/finalize#finalize_invoice-auto_advance
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Again, recommend doing in test mode first
Perfect thanks.