#steinvall
1 messages · Page 1 of 1 (latest)
You can report usage right up until the end of the current billing period, as per the docs: https://stripe.com/docs/billing/subscriptions/usage-based#report
You can track that with current_period_end timestamp and act accordingly
Yes, and Stripe cannot trigger this for me with a webhook or similar?
I.e. I have to write my own code to trigger the reportage of usage to Stripe just some minutes before the invoice is sent to the customers. So for example I have to check the value "current_period_end" and based on that implement/schedule a trigger for my Stripe usage report code?
Yes, and Stripe cannot trigger this for me with a webhook or similar?
No, you'd just get acustomer.subscription.updatedevent at the billing cycle once you enter a new period
Yes, that sounds like the logical approach
Ok, thanks!