Discount specific SKUs for new clients
Rule breakdown, resource payload analysis, and outcomes explanation
{
"rules": [
{
"name": "Discount specific skus for new clients",
"conditions": [
{
"field": "price.jwt_customer.total_orders_count",
"matcher": "eq",
"value": 0
},
{
"field": "price.sku_code",
"matcher": "is_in",
"value": [
"JERSEYBLACK",
"JERSEYGREEN"
],
"group": "jerseys"
}
],
"actions": [
{
"type": "percentage",
"selector": "price",
"groups": [
"jerseys"
],
"value": 0.2
}
]
}
]
} Rules breakdown
Conditions
Actions
Resource payload analysis
Result check
Conclusion
PreviousDiscount all prices greater than or equal to a specific valueNextChange strike-through price based on customer email domain
Last updated