#blinkdaffer
1 messages · Page 1 of 1 (latest)
Hello 👋
We have a doc that goes over Subscriptions < > Webhook events in detail
https://stripe.com/docs/billing/subscriptions/webhooks
have you referred to that already?
yeah
i was using stripe checkout
the first event i was listening to was check session completed
someone on here told me i should be listening to invoice.paid
on connect side
is that right ?
That's correct, it would allow you to trigger your logic when the invoice actually gets paid
great
now when the user misses a payment on the next cycle
which events should i be listenning too
or even when 2nd payment is received
invoice.paid works for renewal invoices too
If the payment fails, then you'd receive invoice.payment_failed event
It is all outlined in the doc I shared above