Discount all the SKU in an order based on the shipping country
Rule breakdown, resource payload analysis, and outcomes explanation
{
"rules": [
{
"name": "Shipping address country code DE",
"conditions": [
{
"field": "order.shipping_address.country_code",
"matcher": "eq",
"value": "DE"
}
],
"actions": [
{
"type": "percentage",
"selector": "order.line_items.sku",
"value": 0.2
}
]
}
]
} Rules breakdown
Conditions
Actions
Resource payload analysis
Outcomes check
Conclusion
PreviousDiscount items with large stock availabilityNextDiscount all the SKU in an order based on the customer email domain
Last updated