#rubs-user-specific-invoice-flow

1 messages · Page 1 of 1 (latest)

crystal jolt
#

Hi there 👋 could you elaborate a bit? How are you using invoices currently?

uncut shore
#

Hi Toby, currently we send manually to our customers

#

We do not want to send invoices automatically to our customers

#

excepted for some users

crystal jolt
#

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.

uncut shore
#

So I have to send manually the invoice when I receive the webhook invoice.finalized ?

crystal jolt
#

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.

uncut shore
#

Ok thank you