Before executing this skill, read these referenced skills with ReadFullDocsArticle:
Creates a discount that incentivizes customers to spend more per order by setting a minimum subtotal threshold above the store's current AOV. The discount percentage is scaled to the store's average profit margin, and the scope targets high-margin categories or products.
getCatalogAnalytics and getProductCatalogData toolsCall getCatalogAnalytics and getProductCatalogData concurrently to collect pricing, margin, and product data.
getCatalogAnalytics call:
getProductCatalogData call:
Also retrieve site-level AOV from getSiteData (AOV = revenue / ordersCount). Run the AOV sanity check: if AOV < price_p25, override with price_p50 as the effective AOV.
Save the following values:
effective_aov — the validated average order valueavg_profit_margin — average profit margin across the catalogprice_p50, price_p75, price_p90 — pricing quantilesUse the average profit margin to select the appropriate discount and threshold tier.
| Margin Tier | Condition | Max Discount | minSubTotal Formula |
|---|---|---|---|
| Low margin | avg_profit_margin < 25% | 10% | 1.15 x effective_aov |
| Medium margin | 25% <= avg_profit_margin <= 50% | 15% | 1.3 x effective_aov |
| High margin | avg_profit_margin > 50% | 20% | 1.5 x effective_aov |
| No data | Margin data unavailable | 10% | 1.15 x effective_aov |
Example: If effective_aov = $150 and avg_profit_margin = 35% (medium), then max discount = 15% and raw minSubTotal = $195.
minSubTotal MUST be rounded UP to the nearest $5 increment (the result mod 5 must equal 0). Always round UP, never down.
| Raw Value | Rounded Value |
|---|---|
| $195 | $195 (already divisible by 5) |
| $217 | $220 |
| $223 | $225 |
| $199 | $200 |
| $172.50 | $175 |
| $201 | $205 |
Formula: minSubTotal = ceil(raw_value / 5) * 5
Select the scope based on analytics data:
If scope is CATEGORY, call getCategoryIds to convert human-readable category names into GUIDs. Never output category names directly as scope IDs.
Exclude the "All Products" system category — it contains every product and would effectively make the discount site-wide.
Max 3 categoryIds per discount rule.
IMPORTANT: Run both guardrail checks before creating the discount rule.
Endpoint: POST https://www.wixapis.com/ecom/v1/discount-rules/query
Request:
Verify that discount_percentage <= avg_profit_margin - 15% (minMarginPct). If the discount would push effective margin below 15%, warn the merchant.
The global discount cap is 25%. Do not exceed this unless the merchant explicitly overrides it.
Endpoint: POST https://www.wixapis.com/ecom/v1/discount-rules
Request — 15% off orders over $195, scoped to a category:
Response:
Request — site-wide fallback example:
Save the returned id and revision for later management.
active: true"Upsell discount is live: {discount}% off on orders over ${minSubTotal} for {scope description}. This threshold is {percentage}% above your current average order value of ${effective_aov}, designed to incentivize higher spending."
| Merchant intent | Scope | Discount | minSubTotal |
|---|---|---|---|
| "Increase average order value" | Determined by analytics (CATEGORY preferred) | Margin-tiered | Calculated from AOV |
| "Get people to spend more on electronics" | COLLECTION with electronics category GUID | Margin-tiered | Calculated from AOV |
| "20% off orders over $200" (explicit) | As specified by merchant | 20% (user override) | $200 (user override) |
| "Reward big spenders" | CATALOG (site-wide) | Margin-tiered | Calculated from AOV |
| Error | Cause | Fix |
|---|---|---|
DISCOUNT_RULE_NOT_FOUND | Rule ID doesn't exist | Re-query discount rules for current IDs |
REVISION_MISMATCH | Revision doesn't match | Re-fetch rule for latest revision, then retry |
| AOV unavailable | No revenue or order data | Use price_p50 from catalog analytics as AOV proxy |
| Margin data unavailable | No profit margin data in catalog | Default to low-margin tier (10% discount, 1.15x AOV) |
| Category GUID not found | Category name doesn't match any collection | Re-query categories or fall back to SITE scope |