Use Cases
Issue a 10% off coupon to referrer on every referee registration up to 5 referrals.
A brand has implemented a referral program where referrers receive a 10% off coupon for each successful referee registration, up to a maximum of 5 referrals. This ensures that customers are rewarded for bringing in new members while maintaining a fair limit on incentives.
To set this up, follow the steps below.


- Configure a confirmation message in the old UI to be sent after a successful referral completion.

- Configure the incentives for issuing a coupon.
- Create a new 10% off coupon.
- Select Modify advanced settings > Redemption settings > Limit total redemptions in the offer?
- Turn on the setting and set maximum allowed to 5.
- Select Preview and save to save the changes.

- Create a message template.
- Choose the created 10% off coupon while configuring the issue coupon.
- Validating Referral code using the Validate referral code API.
- Refer a new customer using the Refer customer API.
Issue 1000 points to referrer on first transaction of every referee.
A Brand has a referral program where referrers earn 1,000 points when a referee makes their first transaction. This ensures that customers are rewarded only when the referred member completes a purchase.
To set this up, follow the steps below.
- Configure the incentives for issuing points.
Note
Use the following expression to issue points to referrer on first transaction of every referee:
referrerCode.refereeTxnCount==1
- Configure a referral campaign.

- Configure a confirmation message in the old UI to be sent after a successful referral completion.
- Create a message template.
- Validating Referral code using the Validate referral code API.
- Refer a new customer using the Refer customer API.
Brand creating a referral campaign and rewarding customer upon successful registration.
A brand sets up a referral campaign to reward customers for bringing in new users. Existing customers receive a unique referral code, which they share via email, SMS, or social media. When a new user registers using the code, they receive a reward. Upon successful registration, the referrer also earns an incentive, driving customer acquisition and engagement.
To create a referral campaign, follow these steps:

- Configure a confirmation message in the old UI to be sent after a successful referral completion.
- Configure Incentive.




- Validating Referral code using the Validate referral code API.
- Refer a new customer using the Refer customer API.
Issue a ₹750 OFF coupon to both referrer and referee upon successful registration.
The brand has launched a referral campaign where both referrers and referees receive a ₹750 OFF coupon upon successful registration. To set up this campaign, follow these steps:




- Set up referral Code Configuration.

- Validating Referral code using the Validate referral code API.
- Refer a new customer using the Refer customer API.
Issue 50 points to both referrer and referee on first purchase, up to $50/month.
Brand offers a referral program where members can earn up to $50 per month by inviting new customers. When a referee signs up using the referrer’s unique link and makes their first purchase, both the referrer and the referee receive $5 Express Cash as a reward. To set this up, follow the steps below:

- Configure a confirmation message in the old UI to be sent after a successful referral completion.
- Configure referral code


Note
Use the following expression to issue points to referrer on first transaction upto $50/month of every referee.
(referrerCode.refereeTxnCount==1)&&(currentTxn.value<=50)
- Create Message Template.
- Validating Referral code using the Validate referral code API.
- Refer a new customer using the Refer customer API.
Updated 2 days ago