Lark connection
Relay (Supabase)
ads report → oc_322954c… · guard: silent
Webhook secret
Set
AUTOMATION_SECRET
Auto-pause (OOS)
On
stock ≤ 0 → pause
Auto-resume (restock)
On
stock > 0 → resume
🔌 Webhook endpoint
LivePoint the Product Information System's stock sync at this endpoint. Requests must carry the shared secret; the endpoint refuses everything else.
POST URL
https://dailytracker.seagull.to/api/webhooks/stock-syncMethod
POSTAuth header
x-webhook-secret: ‹AUTOMATION_SECRET›Content-Type
application/jsonDaily report
https://dailytracker.seagull.to/api/lark/daily-report🛡️ Stock Guard webhook
Pause / resume campaigns from stock levelsHave the Product Information System POST current stock here whenever inventory changes. Out-of-stock SKUs pause their matching campaigns; restocked SKUs resume them. This runs silently — no Lark alert is sent.
curl -X POST "https://dailytracker.seagull.to/api/webhooks/stock-sync" \
-H "x-webhook-secret: $AUTOMATION_SECRET" \
-H "Content-Type: application/json" \
-d '{
"items": [
{ "sku": "SG-RC18", "name": "Rice Cooker 1.8L", "stock": 0 },
{ "sku": "SG-SOY", "name": "Soy Milk Maker", "stock": 25 }
],
"dryRun": true
}'Send "dryRun": true first — it reports exactly what would change without touching a single live campaign.
📊 Daily Ads report → Lark
Cost & performance cardSends today's account-wide spend, results, CTR, CPC and top campaigns to Lark as a card. Add ?preview=1 to inspect the JSON without sending. Wire it to a scheduler for a daily push.
# send today's report now curl -X POST "https://dailytracker.seagull.to/api/lark/daily-report" -H "x-webhook-secret: $AUTOMATION_SECRET" # preview only (no send) curl "https://dailytracker.seagull.to/api/lark/daily-report?preview=1&secret=$AUTOMATION_SECRET"
🔗 Product → campaign rules
4 rules · edit via STOCK_CAMPAIGN_MAP| Product | SKUs | Name / campaign keywords | Campaign IDs |
|---|---|---|---|
| Rice Cooker 1.8L | — | ricecookerrice cookerหม้อหุงข้าว | auto (by name) |
| Soy Milk Maker | — | soymilksoy milkน้ำเต้าหู้เต้าหู้ | auto (by name) |
| Electric Ice Shaver | — | iceshaverice shaverน้ำแข็งไสเครื่องทำน้ำแข็ง | auto (by name) |
| Smoothie Mix Blender | — | smoothiemixsmoothieblenderเครื่องปั่น | auto (by name) |