#muhammadumar_71783_63904
1 messages · Page 1 of 1 (latest)
Firstly, we are looking to renew coupons when they are assigned to a user, so they can be renewed.
I don't really understand this. Can you explain more?
Secondly, we would like to know how to manually apply discounts to subscriptions.
You can apply either a promo code or coupon :
https://stripe.com/docs/api/subscriptions/update#update_subscription-promotion_code
https://stripe.com/docs/api/subscriptions/update#update_subscription-coupon
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Additionally, we are interested in scheduling subscriptions for future dates.
you can look into Subscription Schedules : https://stripe.com/docs/billing/subscriptions/subscription-schedules
@pastel stag, "Coupon Renewal" refers to the process where, once a user reaches the usage limit of a coupon, we have the option to renew the coupon for the customer. This renewal allows them to reuse the coupon a specified number of times, as determined by us. Additionally, we aim to offer discounts to users without the need for promo codes or coupon codes. Our approach involves manually providing discounts based on individual circumstances. For instance, if a customer is a friend of ours and the subscription price is $200, we can apply a discount of $150, resulting in a payment of $50. Our team manages the subscription process for users.