#Ben Clum
1 messages · Page 1 of 1 (latest)
Yeah, you would need to get a list of all the Invoices that haven't been finalized on the Express account, then run a series of Update Invoice calls: https://stripe.com/docs/api/invoices/update#update_invoice-footer
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you can't update the default footer for all invoices?
I ask because your suggestion doesn't work for subscription invoices. those are finalized immediately
There should be a 1 hour window in most cases where the Invoice is editable and the footer can be changed: https://stripe.com/docs/billing/invoices/subscription#subscription-renewal
If you're wanting to automate this workflow, then you would just set up a webhook endpoint to listen for invoice.created and programmatically update the footer during that 1 hour window
so I guess the answer is no about the default footer? cause I know the setting exists on the dashboard, but I'm not seeing in in the API