Combo Promotions (CSV)

Involves offering customers a combination of products, services, or discounts as a bundled package deal.

Example:

The following example is a simple 3x2. The customer will get one item free of charge when buying two items.

  1. Buy two boxes of candy and receive a box of candy for free.

Setting up this promotion:

1. Identify Properties for this promotion:

This is the unique promotion that will use all properties.

Available properties at this type of promotion: item, quantity, percentage.

2. Understand supported property combinations:

➡️

customerBuys:

items and quantity

NOTE: This parameter allows more than 1 product, you can also put a * if you don't want to define which product will trigger the promotion.

➡️

customerGets:

items and quantity
or
items and quantity and percentage

usageLimit - Parameter used to limit use per order or per customer.

priority - Value used to indicate the priority of the promotion, once we have more than one promotion active. 1 is the highest priority and infinit is the lowest.

  • Promotions are always cumulative, so it's necessary to handle priority

NOTE: The front-end is not ready to show more than 1 promotion per product.

3. Define Rules

The combination of properties in customerBuys, indicates that the promotion will be triggered when the product Candy box, with quantity 2 is in the cart.

➡️

customerBuys rule:

item: box of candy
quantity: 2

Combining the properties in customerGets indicates that the customer will receive a box of Candy for free.

➡️

customerGets benefit:

item: box of candy
quantity: 1

NOTE: You can set up a different product into customerGets, which means your customer will receive a different product for free


Real Scenarios

Scenario 1: Buy a given item and get second item for free (2x1)

  • customerBuys: 1 Fizz Orange Soda Pack
  • cutomerGets: 1 Fizz Orange Soda Pack for free
  • Example in CSV, line 8

Scenario 2: Buy a given item and get another item for free

  • customerBuys: 2 Rich Cola 6 Pack
  • cutomerGets: 1 Rich Cola 6 Pack for free
  • Example in CSV, line 9

Scenario 3: Buy a given item and get a discount on the second item

  • customerBuys: 1 pack of Rich Cola 12 Pack
  • customerGets: 50% discount on the second item of Fizz Orange Soda Pack
  • Example in CSV, line 10

Scenario 4: Combo Multisku - Buy a set of products and get an item for free

  • customerBuys: 1 pack of Rich Cola 6 Pack or 1 pack of Rich Cola 12 Pack
  • customerGets: 2 packs of Fizz Orange Soda Pack for free
  • Example in CSV, line 11

Scenario 5: Combo Multisku - Buy a set of products and get a different item for free

  • customerBuys: 8 units of Cereal 300g or 8 units of Cereal Miel 230g
  • cutomerGets: 2 units of Cereal Chocolate 30g for free
  • Example in CSV, line 12