Offer a specific shipping method for free in a specific country
Rule breakdown, resource payload analysis, and outcomes explanation
{
"rules": [
{
"name": "Free express shipment for US orders",
"conditions": [
{
"field": "order.country_code",
"matcher": "eq",
"value": "US"
}
],
"actions": [
{
"type": "percentage",
"selector": "order.line_items.shipment.shipping_method.id",
"value": 1.0,
"identifier": "bEegQFyxNw"
}
]
}
]
} Rules breakdown
Conditions
Actions
Resource payload analysis
Outcomes check
Conclusion
PreviousDiscount an order based on promo item and total number of itemsNextDiscount items with large stock availability
Last updated