Discount all prices greater than or equal to a specific value
Rule breakdown, resource payload analysis, and outcomes explanation
{
"rules": [
{
"name": "Price with amount_cents greather than equal 200",
"conditions": [
{
"field": "price.amount_cents",
"matcher": "gteq",
"value": 200
}
],
"actions": [
{
"type": "percentage",
"selector": "price",
"value": 0.2
}
]
}
]
} Rules breakdown
Conditions
Actions
Resource payload analysis
Outcomes check
Conclusion
Last updated