#special character-coupon-limits
1 messages · Page 1 of 1 (latest)
Yeah, you would just use a promotion code and set max_redemptions to 1 (see this field: https://stripe.com/docs/api/promotion_codes/object#promotion_code_object-max_redemptions)
here are some docs on how coupons work with promotion codes: https://stripe.com/docs/billing/subscriptions/coupons
Ahh, I see. To confirm, this is max redemptions per user? The UI seems like it is max redemptions overall.
If you include a customer when you create the promotion code, then that customer is the only person that can use that specific promotion code. So the max_redemptions would only apply to that customer.
If you don't set a customer, then the max_redemptions would apply globally and after a certain number of uses, it would become invalid
Awesome, thank you for the confirmation! This helped a ton