Scope
How to change a condition's scope
Example
"conditions": [
{
"field": "order.tags.name",
"matcher": "eq",
"value": "dropship"
},
{
"field": "order.line_items.sku.code",
"matcher": "start_with",
"value": "TSHIRT",
"group": "tshirts"
}
]"conditions": [
{
"field": "order.tags.name",
"matcher": "eq",
"value": "dropship"
},
{
"field": "order.line_items.sku.code",
"matcher": "start_with",
"value": "TSHIRT",
"scope": "all",
"group": "tshirts"
}
]Last updated