Storewide Promotion Code Samples

10% off storewide except ‘Huggies’, ‘Munchkin’, and ‘Pampers’ brand products (NOT operator)

Example request
1{
2 "name": "10% off storewide except 'Huggies', 'Munchkin', and 'Pampers' brand products",
3 "redemption_type": "AUTOMATIC",
4 "rules": [
5 {
6 "action": {
7 "cart_items": {
8 "discount": {
9 "percentage_amount": "10"
10 },
11 "items": {
12 "not": {
13 "brands": [
14 35,
15 36,
16 37
17 ]
18 }
19 }
20 }
21 },
22 "apply_once": true
23 }
24 ]
25}