Copy these proven patterns instead of starting from scratch. Run each in shadow first, then activate.

Auto-fulfill every paid order

on: order.paid
do:
  - shipstation.push

Full walkthrough: ShipStation setup.

Review high-value orders before shipping

on: order.paid
when:
  total_gte: 1000
do:
  - order.hold
  - notify.send:
      to: managers

πŸ’‘ Tip: Pair this with the auto-fulfill recipe by adding total_lt: 1000 there, so only under-$1000 orders auto-ship while big ones wait for review.

Low-stock alert

on: inventory.low
when:
  sku: PNTL-2000
do:
  - notify.send:
      to: purchasing
  - order.tag: restock-needed

⚠️ Warning: Whatever you build, run it in shadow mode and check run history before going live. A misconfigured condition can silently skip orders you meant to ship.