#cho_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/1217531493832982678
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
To explain in a little more detail:
If the base price is $100,
I need $50 off the first month,
and $25 off every month thereafter, so the charges should be
Month 1: $50
Month 2: $100
Month 3: $75
Month 4: $100
Month 5: $75
Hi, yes you could create something like that. When you create the Subscription Schedules, you can add the coupon on the phases, https://docs.stripe.com/api/subscription_schedules/create#create_subscription_schedule-phases-coupon. So, you would create 5 phases. On the first, 3rd, and the 5th one you add the coupon.
Sorry, I did not clarify, after Month 5, the $100 & $75 need to repeat thereafter
Would I create 2 phases then?
I am thinking I need 1 phase where the $50 coupon is applied, and then in the second phase am I able to create the repeating pattern there that lasts indefinitely?
Given that you're looking for alternation, you would need to add the phases explicitely. If you charged $50 for the first month, then $75 for 5 months, then $100 thereafter, you would create 3 phases. However, it looks like you're doing even more customized flow where you're alternative offerring the coupon every other month after the first month.
Sure!