Limit discounts to customer groups
Last updated
Was this helpful?
Last updated
Was this helpful?
You can limit discount coupons and promotions to certain customer groups to create more engagement for new or regular customers only.
If you have an existing promotion, you can make it available to specific customer groups with the following API call:
where customerGroups
is an array of customer group IDs ().
Learn more about customer groups in .
Change STOREID
with your store ID, PROMOTIONID
with the promotion ID (), and the secret_token
with the secret access token of your app.
If you have an existing discount coupon, you can limit its usage to new or regular customers only with the following API call:
where applicationLimit
must be one of:
UNLIMITED
- no user application limits (use it to remove the limitation).
NEW_CUSTOMER_ONLY
- discount coupon can be applied only by customers without placed orders. Unique customers are defined by the email they enter at the checkout.
REPEAT_CUSTOMER_ONLY
- discount coupon can be applied only by customers who placed orders in the store before. Unique customers are defined by the email they enter at the checkout.
Change STOREID
with your store ID, DISCOUNTCOUPONID
with the discount coupon ID (), and the secret_token
with the secret access token of your app.