{"name": "Low Inventory Alert + Reorder Draft", "nodes": [{"id": "n1", "name": "Every Morning 7AM", "type": "n8n-nodes-base.scheduleTrigger", "typeVersion": 1.3, "position": [0, 0], "parameters": {"rule": {"interval": [{"triggerAtHour": 7, "mode": "everyWeek", "triggerAtDay": 1}]}}}, {"id": "n2", "name": "Check Inventory", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.4, "position": [224, 0], "parameters": {"method": "GET", "url": "https://YOUR_STORE.myshopify.com/admin/api/2024-01/products.json?fields=title,variants&limit=50", "sendHeaders": true, "headerParameters": {"parameters": [{"name": "X-Shopify-Access-Token", "value": "YOUR_SHOPIFY_TOKEN"}]}}}, {"id": "n3", "name": "Analyze & Draft Reorder", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.4, "position": [448, 0], "parameters": {"method": "POST", "url": "https://api.anthropic.com/v1/messages", "sendHeaders": true, "headerParameters": {"parameters": [{"name": "x-api-key", "value": "YOUR_ANTHROPIC_API_KEY"}, {"name": "anthropic-version", "value": "2023-06-01"}, {"name": "content-type", "value": "application/json"}]}, "sendBody": true, "bodyParameters": {"parameters": [{"name": "model", "value": "claude-sonnet-4-6"}, {"name": "max_tokens", "value": "800"}, {"name": "messages", "value": "=[{\"role\":\"user\",\"content\":\"Return ONLY JSON {low_stock_items:string[], reorder_email:string, urgent_items:string[]}. Inventory: {{ JSON.stringify($json.products?.slice(0,20)) }}\"}]"}]}}}, {"id": "n4", "name": "Send Reorder Alert", "type": "n8n-nodes-base.gmail", "typeVersion": 2.2, "position": [672, 0], "parameters": {"resource": "message", "operation": "send", "sendTo": "YOUR_EMAIL@company.com", "subject": "=Low Stock Alert: {{ JSON.parse($json.content[0].text).urgent_items.length }} urgent items", "emailType": "html", "message": "={{ JSON.parse($json.content[0].text).reorder_email }}", "options": {}}, "credentials": {"gmailOAuth2": {"id": "YOUR_GMAIL_CREDENTIAL_ID", "name": "Gmail account"}}}], "connections": {"Every Morning 7AM": {"main": [[{"node": "Check Inventory", "type": "main", "index": 0}]]}, "Check Inventory": {"main": [[{"node": "Analyze & Draft Reorder", "type": "main", "index": 0}]]}, "Analyze & Draft Reorder": {"main": [[{"node": "Send Reorder Alert", "type": "main", "index": 0}]]}}, "settings": {"executionOrder": "v1"}}