#dasbeasto-invoice-webhook
1 messages · Page 1 of 1 (latest)
If you subscribe them to a yearly price then they get one invoice a year
I'm not sure I understand what you are describing unfortunately, but you can put them on a free monthly Price instead right?
To cite an example, Plausible (https://plausible.io/#pricing) gives you 10k pageviews a month for $9/month or $90/year, either way though the 10k usage limit is reset every month not once a year.
To implement the the same, I could track the users pageview count in my DB and then on "invoice.paid" I could reset the count. Though it wouldn't work for free or yearly users since they wouldn't get monthly invoices.
Do free monthly prices still get invoices? If so that could work for my free tier. Would they need to input payment info still though?
Do free monthly prices still get invoices?
yes
I could reset the count. Though it wouldn't work for free or yearly users since they wouldn't get monthly invoices.
yeah that wouldn't really work. You could use https://stripe.com/docs/api/subscriptions/create#create_subscription-pending_invoice_item_interval but that only works if you have a pending invoice item so I don't think that's a fit for you
the best option will be to have 2 separate subscriptions, one for the yearly Price and one for the monthly Price that you use to reset their count each month