Nested
How to nest conditions into one another
Key
Type
Required
Description
Example
String
String
Example
"conditions": [
{
"field": "order.line_items.sku.code",
"matcher": "start_with",
"value": "PROMO",
"group": "promo-products"
"nested": {
"conditions_logic": "or",
"conditions": [
{
"field": "order.line_items.quantity",
"matcher": "gteq",
"value": 2
},
{
"field": "order.line_items.unit_amount_cents",
"matcher": "gt",
"value": 15000
}
]
}
}
]Last updated