#supreeth_20471
1 messages · Page 1 of 1 (latest)
Hello supreeth_20471, we'll be with you shortly! Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
• supreeth_20471, 0 days ago, 16 messages
• supreeth_20471, 1 days ago, 8 messages
• supreeth_20471, 3 days ago, 7 messages
• supreeth_20471, 3 days ago, 4 messages
You would want to use a usage-based pricing model for billing in arrears: https://stripe.com/docs/billing/subscriptions/usage-based
Essentially that boils down to: each seat is 1 unit, which you report throughout the billing period
does this auto charge the customer at the end of every month even if the billing cycle is annual? 🤔
Not if the billing cycle interval is yearly. You can set it to monthly and custom code a system that tracks the timeline of the subscription and adds a one-off Invoice Item at the end of the year, but unfortunately you can't have 2 different billing intervals on a single Subscription.
what if i write a cron the invoice and pay at end of each month. that would work right?
That would work, yeah
gotcha ! thanks