#alfredtuffreau_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/1286228856948129893
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- alfredtuffreau_best-practices, 5 days ago, 18 messages
From your description, this still looks like a monthly subscription to me, i.e. charging the customer on the monthly basis. How do you determine the tiering of the amount? Is it by the usage or your own internal logic?
Thats my issue, it is determined by usage (from my understanding but that may not work for my model). I don't know how to apply my pricing monthly:
Customers can issuer certificates to learners. Tiers are defined by learners:
Customers can issue certificates for 200 learners per years for 0$
If customers issue certificates for 300 learners per years they are charged additional 250$
If customers issue certificates for 400 learners per years they are charged additional 200$
...
If the tier logic is calculated on yearly basis, but the actual charge is monthly, Stripe doesn't support native tiering price like this.
One way I can think of is:
- your internal tiering logic computes the new price, t
- When the new price is different from the existing one, update the subscription to the new price: https://stripe.com/docs/billing/subscriptions/upgrade-downgrade
Ok I will explore this. 2 questions come to my mind:
- Is the subscription monthly are yearly?
- Is the subscription usage based?