#andrea-skuola-zero-invoice
1 messages · Page 1 of 1 (latest)
the subscription says that next invoice is €0, i wanted to know what happens if i do nothing
Stripe will charge €0 to the user card?
Nothing, the invoice will be marked as paid
and if I have webhook on my site that listen to invoice.payment_succeeded does this invoice triggers this event?
that's a problem for me because i generate things on invoice.payment_succeeded event and this isn't a real payment
That only fires if there's an actual payment, which in the case of €0 amount, there's not
maybe this saves me
Well, you should stop listening to that event and use invoice.paid. We recommend that event in our docs: https://stripe.com/docs/billing/subscriptions/overview#subscription-lifecycle
so invoice.payment_succeeded will not trigger on €0 invoice?
Correct