#zlf_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/1356446915503325415
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, yes you can create a subscription with a $0 price initially, have you tried it out?
For 2 and 3, you can disable proration when updating the subscription https://docs.stripe.com/billing/subscriptions/prorations#disable-prorations
No, I don't know how to create it.
For 2 and 3,According to what you said, this only affects prorated payments and will not impact renewal charges, right?
Yes you are right.
https://docs.stripe.com/billing/subscriptions/build-subscriptions?platform=web&ui=stripe-hosted you can follow this guide to build a subscriptoin integration,
For the first issue, the functionality we want is that a user's subscription contains two products (one for $20 and one for $30). When creating the subscription, we want one of the products to be priced at $0, meaning the user only pays $20 at the time of subscription creation. However, upon renewal, the system should automatically charge the full amount of $20 + $30 = $50.
What do you mean? Does this refer to the first issue, or the second and third issues?
This can solve the second and third issues. How can we solve the first issue?
I see, you can use subscriptoin schedule to automate the change (i.e., change the $0 subscription item to $30)
Is there a method within the subscription itself to achieve this functionality?
Because we are currently using subscriptions rather than subscription schedules, switching to subscription schedules would require significant changes on our end.
Can we achieve our desired effect by using coupons?
Yes you can also create a $20 coupon with duration set to once to give discount for the first invoice
Okay, I'll test it.
For the second and third issues, I have another question: When modifying a subscription, if I remove a $20 product and add a $30 product at the same time, we do not want to issue a refund for the $20 product, but we do want the user to pay for the $30 product. Is there a feature that supports this?
If you turn off prorations, your customer will pay the new price in full (i.e., $30) in the next invoice. Is this something that you want to achieve?