#rubs-user-specific-invoice-flow
1 messages · Page 1 of 1 (latest)
Hi Toby, currently we send manually to our customers
We do not want to send invoices automatically to our customers
excepted for some users
I don't think what you're looking for is available within Stripe. I believe instead you'll need to build the logic for this on your end. The setting that controls whether finalized invoices are automatically sent is a global setting for your account and can't be adjusted on a per-customer basis.
So I have to send manually the invoice when I receive the webhook invoice.finalized ?
Yup, that's exactly the approach I had in mind. Listen to the invoice.finalized events, and compare the customer ID with your list of customers to send invoices to immediately, and then proceed accordingly.
Ok thank you