#special character-coupon-limits

1 messages · Page 1 of 1 (latest)

verbal kelp
#

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

Add a discount to a subscription using coupons and promotion codes.

humble junco
#

Ahh, I see. To confirm, this is max redemptions per user? The UI seems like it is max redemptions overall.

verbal kelp
#

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

humble junco
#

Awesome, thank you for the confirmation! This helped a ton