#archie_best-practices
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1427725809711317052
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
inviting @ripe timber
hello! looking at this now
hmm, i'm digging into this a bit more and i don't think we have a super clean way of supporting this. the best option might just be to create a monthly subscription and then to use some reference point (metadata on the subscription or the billing_cycle_anchor or something like that) to instruct your application when to give them more "credits"
can you share more about your subscription? what exactly are the credits? are they just something you're tracking on your side?
Our current subscription consists of a yearly flat fee price (3000$) + usage based graduated tiered price (with $XX worth of credits included for free)
The credits are just measured via meters
Ideally, we could keep everything the same, except charge monthly (as like a yearly commitment-based subscription)
Hello
Sounds like you want - https://docs.stripe.com/billing/subscriptions/usage-based-v1/use-cases/flat-fee-and-overages
But I don't think you can mix intervals here
As far as I know, you'd need to switch to flexible billing mode for that - https://docs.stripe.com/billing/subscriptions/billing-mode/compare#mixed-intervals-on-the-same-subscription
ah actually - https://docs.stripe.com/billing/subscriptions/mixed-interval
We have a doc that talks about your exact usecase
Hi Hanzo, we've looked at this doc https://docs.stripe.com/billing/subscriptions/mixed-interval, but it doesn't quite cover our case. In our case, we would like to setup a commitment-like subscription, where customers commit to a yearly flat fee, but are charged monthly for it.
We're already using flexible billing subscriptions
Ah I see. Sorry about the confusion.
For a monthly invoice, you need to have a monthly subscription. You could model it as a yearly sub in your application but on Stripe it can't be considered an "annual" subscripition as such
I see. Thanks for the help! Are there any plans on the Stripe future roadmap to support subscription commitments? (This seems like something a lot of companies & startups would love to see!)
I'm not sure I fully understand the usecase but let's take a step back..
A monthly subscription goes on until it's cancelled so I don't fully grasp how it's different from an annual subscription that you charge monthly?
Are you looking for a Subscription that ends after that "commitment" period i.e. 12 months? If so, we do have Subscription Schedules API
Like what I'm trying to understand is - how is a $3000 "annual" subscription that you'd charge monthly different from $250 monthly subscription?