- 1 Minute to read
- Print
- DarkLight
Price drop
- 1 Minute to read
- Print
- DarkLight
The content outlines the prerequisites for configuring a minimum percentage of price drop when adding products to a "product catalog." It specifies the logic conditions that must be checked during this process. Key components include "stockTotalFromFile," which refers to the stock total value from the current import, and "newPriceFromFile," which indicates the product price from the same import. Additionally, "wishlistOrAbandonedCartPrice" represents the price saved in a customer's Wishlist or Abandoned Cart. The "minimumPercentPriceDrop" is the configured percentage that triggers the price drop condition. The example provided illustrates how imported data interacts with these components to ensure that the price drop meets the specified criteria before a product is added to the catalog. This setup is essential for maintaining pricing strategies and customer engagement through effective catalog management.
Prerequisites
The minimum percent of price drop must be configured.
Logic
Condition checked during product row being added to "product catalog":
(stockTotalFromFile > 0) && (newPriceFromFile < (wishlistOrAbandonedCartPrice * (100 - minimumPercentPriceDrop)%))
Here's what each component means:
stockTotalFromFile - the "stockTotal" field value from the current import.
newPriceFromFile - the "productPrice" field value from the current import.
wishlistOrAbandonedCartPrice - the price saved in the contact's Wishlist or Abandoned Cart.
minimumPercentPriceDrop - the price drop percentage value configured in the trigger.
Example
Trigger settings:
Imported data:
Product price saved in the contact's Wishlist or Abandoned Cart | product SKU | stock Total | product Price | Result |
---|---|---|---|---|
10 | aaa-aaa-aaa | 0 | 5 | Doesn't meet the "Price drop" trigger condition because the imported "stockTotal" field is not higher than 0. |
bbb-bbb-bbb | 3 | 8 | Doesn't meet the "Price drop" trigger condition because the imported "productPrice" is not lower than the configured 20% price drop. | |
ccc-ccc-ccc | 2 | 7 | This meets the "Price drop" trigger condition because the imported "stockTotal" is higher than 0, and the imported "productPrice" is lower than the configured 20% price drop. | |
ddd-ddd-ddd | 4 | 12 | Doesn't meet the "Price drop" trigger condition because the imported "stock total" is not lower than the configured 20% price drop. |