#eskimo - subscription webhook
1 messages · Page 1 of 1 (latest)
Not the schedule event, no. Likely you want to listen to invoice.paid to know when each billing cycle happens (this will include invoices that have no payment due to credit or some other reason)
Will that include the subscription current period end, or will have to then query the subscription to get that?
You'd need that from the subscription, so maybe you just want customer.subscription.updated? but this might fire for other reasons, too (any subscription change), and doesn't include the invoice
It also will fire even if the invoice payment fails since the subscription has cycled regardless
invoice.paid is the right single for a successful monthly renewal, which you can then retrieve the subscription to look at
Ok great. Thanks again.
NP!