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: 1000there, 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.