curl --location -g --request PUT '{{ecommercev2_url}}/questions/' \
--header 'x-client: {{client}}' \
--header 'accept-language: {{acceptLanguage}}' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"title": {
"en": "Summer Sale",
"ar": "تخفيضات الصيف"
},
"code": "SUMMER2024",
"description": {
"en": "Get 20% off on all summer items",
"ar": "احصل على خصم 20% على جميع منتجات الصيف"
},
"appliedOn": "general",
"type": "manual",
"expiration": {
"expirationType": "months",
"expirationValue": 3
},
"discount": {
"type": "percentage",
"value": 20
},
"totalUsages": 1000,
"usage": {
"interval": {
"expirationType": "days",
"expirationValue": 1
},
"maxUsage": 1,
"minimumSubtotal": 0,
"startDate": "2024-06-01T00:00:00Z",
"endDate": "2024-08-31T23:59:59Z"
},
"deliveryMethod": "pickup",
"isActive": true,
"appliedAutomatically": false,
"rule": {
"isActive": true,
"title": {
"en": "Summer Sale Rule",
"ar": "قاعدة تخفيضات الصيف"
},
"startDate": "2024-06-01T00:00:00Z",
"endDate": "2024-08-31T23:59:59Z",
"priority": 1,
"conditions": {
"allowedIf": "all",
"when": true,
"values": [
{
"conditionType": "sub_total_amount",
"operator": "gte",
"value": {
"value": 100,
"currencyCode": "AED"
}
},
{
"conditionType": "delivery_method",
"operator": "eq",
"value": "pickup"
},
{
"conditionType": "branch",
"operator": "eq",
"value": "68209c7e6d68bcb0ada829ea"
},
{
"conditionType": "order_timeframe",
"operator": "lt",
"value": {
"expirationType": "days",
"expirationValue": 1
}
}
]
}
}
}'