#Jatin
1 messages · Page 1 of 1 (latest)
Not sure about the short form, but sounds like you want Coupon + Promotion Code combination here: https://stripe.com/docs/billing/subscriptions/coupons?dashboard-or-api=api#promotion-codes
Thanks @analog lintel for help. I'm going through this
2 quick questions after going through this doc...
- Can the Promotion Code be restricted to be redeemed only once?
- Once redeemed, can I apply a flat 20% discount to all future invoices of that customer?
I think my first question has been answered here
https://stripe.com/docs/billing/subscriptions/coupons?dashboard-or-api=api#limit-redemptions
Waiting for answer on 2nd question
- Yes it's the
max_redemptions - The closest is a Coupon with
percent_off= 20 andduration= "forever" and applied directly to a Subscription... Promotion Code is more of specific count of one-off thing
Thanks, I'm planning a flow like this..
-
Create a coupon code (Ex.
ABC Offer20) withpercent_off = 20andduration = "forever" -
Then, I create 1000 Promotion codes (Ex.
20TWGD,20HYDV, etc.) withmax_redemptionsone-time
Would this be the correct way of execution?
(P.S. We're selling on pay-as-you-go model, rather than fixed subscription cost)
So basically you have a pool of one-time promotion code. Yeah sounds possible to me