#zignd_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/1355199560087113875
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
As you can see here, the next invoice indicates a higher amount to be paid (without discount). This is because the coupon applied is of type once. As soon as the customer pays this invoice, our webhook updates the subscription to add the product's default coupon which is of type forever.
The issue here is that in the mean time, we're displaying to the customer an amount to be paid that is not correct, because we will apply a coupon immediatly after the purchase. But that can cause a bad impact on the customer experience.
We know it's not possible to apply more than one coupon at the same time. But we wanted a workaround to provide a better experience for our customers
Yea unfortunately there's no good way to do this cleanly all at once, Checkout doesnt know about that future coupon at all
Once possible workaround you could try is:
1/ Set up your subscription with a trial period for the first period
2/ Use the forever coupon for the recurring discount
3/ To pay for the initial period at the desired other discount rate, use a one-time price for that amount
That would end up with the customer paying the initial period price for the trial period, then the recurring amount would be discounted with the coupon
One way we'd like to make this easier in future with with multiple/stackable coupons/promos, so you'd apply your base recurring discount + and additional one time discount for the first payment. That's not supported today, but something we're working on.