- Sense of Urgency: Time-limited discounts create a sense of urgency, encouraging referees to act swiftly to take advantage of the offer. This urgency can lead to quicker decision-making and increased conversion rates.
- Enhancing Referral Motivation: When referrers know that their referrals lead to tangible benefits like discounts for their contacts, they’re more likely to actively promote your product. This not only increases the number of referrals but also the likelihood of signups.
- Overcoming Price Resistance: Discounts can effectively lower financial barriers for potential users who are hesitant about the cost. By making the price more attractive, it can sway those who are undecided about trying your product or service.
- Building Initial Trust: Offering a discount can foster goodwill and build initial trust with new users. A special deal can create a positive first impression of your brand, setting the stage for a lasting relationship.
- Competitive Advantage: If your competitors do not offer similar incentives, your discount can give you a competitive edge. This unique selling point can make your product more appealing compared to others in the market.
Configure discount information
Altho handling discounts needs to be done within your product and supporting systems like Stripe or Chargebee, you can specify discount information in Cello to be shown in the Referral Component and terms. Go to Campaign settings in Cello Portal and add discount information, by specifying discount percentage and duration in months:
- Create a coupon either via the Chargebee Dashboard or the Chargebee API
- Attach the coupon code to the subscription
How do I grant discounts in Stripe?
Stripe uses coupons and promotion codes to apply discounts on payments. To grant a discount for new referred accounts, these coupons and promotion codes have to be set up in Stripe. This can be done in multiple ways. For both solutions, you must first set up a coupon and then attach the discount rules (e.g. 10% off for 3 months).- Manually using the Stripe Dashboard
- Programmatically using the Stripe API.
Using coupons for discounts
Coupons can be used to attach a discount directly to a stripe customer or a subscription. This can be achieved manually via the Stripe Web Console or the Stripe API. Attach manually via Stripe Web Console:

Attach the coupon to the customer or subscription
To give the discount to a new user, you need to attach the coupon to a customer or subscription. There are two ways to attach the coupon, manually or via API.If you attach the coupon to a customer, the discount is applied to every transaction or subscription. You can limit the coupon in settings with certain conditions.
Manual attachment of the coupon to the customer in advance
This is only possible if the stripe customer is already created and no transaction has been created yet.- Go to your Stripe Console
- Open the customer, go to Actions, and select Apply coupon

- Select the coupon you want to attach

Attach the coupon during checkout with Stripe API
The prerequisite for this solution is to have implemented the Stripe.js in your front end so you can modify the customer creation or subscription.Attach the discount already while creating the customer and adding the
cello_ucc
code.
Using promotion codes for discounts
A Promotion Code represents a customer-redeemable code for a coupon. They can be used for the Stripe Payment Link or custom-built forms. Here are their key characteristics:- When using a Promotion Code, the setup of an underlying coupon is also required.
- Promotion Codes can be used to create multiple codes for a single coupon.
- Because Promotion Codes are used by customers to redeem a coupon, they are exposed to customers.
Pre-fill the promotion code in Stripe Payment Link
With the URL parameterprefilled_promo_code
a promo code can be automatically passed to the UI. The form automatically picks up the parameter from the URL and pre-fills the promotion code field. More details can be found here.
Example:
10% off for 3 months via promo code CELLO
https://buy.stripe.com/cello?prefilled_promo_code=CELLO
