#michamitus_api
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/1303683726588383253
📝 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.
- michamitus_api, 21 hours ago, 6 messages
hi! I would say you can't really, those are two separate types of coupons. See https://docs.stripe.com/billing/subscriptions/coupons#coupon-duration
but I don't 100% understand the scenario yet
that applies a 30% discount for three months on monthly subscriptions, and a 30% discount on only the first invoice for yearly subscriptions?
can you explain this to me with example of how this would look in terms of dollar amounts on specific invoices, just so I'm sure I understand the exact scneario?
Sure. We’ve got monthly and yearly subscription.
For monthly it would be: month1 = (100$ - 10% = 90$), month2 = (100$ - 10% = 90$), month3 = (100$ - 10% = 90$), month4 = 100$, month5 = 100$, …
For yearly: year1 = (1000$ - 10% = 900$), year2 = 1000$, year3 = 1000$, …
well for the monthly that's just a coupon with duration=3 interval=month
for yearly duration=1 interval=year would generally work
you'd need two coupons/promo codes for this
Can it be the same promo code, ex: "PROMO-10"?