{"title":"Webhook Automation","slug":"webhook-automation","category":"guides","summary":"ทริกเกอร์ระบบภายนอกเมื่อ memory เปลี่ยนแปลง — sync, แจ้งเตือน, ทำให้เป็นอัตโนมัติ","audience":["human","llm"],"tags":["guide","webhooks","automation","integration"],"difficulty":"intermediate","updated":"2026-06-27","word_count":236,"read_minutes":1,"lang":"th","translated":true,"requested_lang":"th","content_markdown":"\n# Webhook Automation\n\nWebhook ช่วยให้คุณทริกเกอร์ระบบภายนอกเมื่อ Synapse event ทำงาน คู่มือนี้ครอบคลุมรูปแบบ automation ทั่วไป\n\n## รูปแบบทั่วไป\n\n### รูปแบบ 1: แจ้งเตือนเมื่อ Memory Critical\n\nส่งข้อความ Slack เมื่อ memory critical ถูกเก็บ:\n\n```python\n# Webhook handler (your server)\n@app.post(\"/webhook\")\nasync def handle(request):\n    payload = await request.json()\n    \n    # Verify signature\n    if not verify_signature(payload, request.headers):\n        return 401\n    \n    if payload[\"event\"] == \"memory.store\":\n        memory = payload[\"data\"]\n        if memory.get(\"priority\") == \"critical\":\n            # Send Slack notification\n            await slack.post(\n                f\"🚨 Critical memory stored: {memory['key']}\\n{memory['content'][:200]}\"\n            )\n    \n    return 200\n```\n\nลงทะเบียน webhook:\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/webhooks \\\n  -H \"Authorization: Bearer YOUR_MIND_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://my-app.com/webhook\",\n    \"events\": \"memory.store\",\n    \"secret\": \"my-hmac-secret\"\n  }'\n```\n\n### รูปแบบ 2: Sync ไปยังระบบภายนอก\n\nSync memory ไปยัง Notion, Obsidian หรือ KB ภายนอกใด ๆ:\n\n```python\n@app.post(\"/webhook\")\nasync def sync_to_notion(request):\n    payload = await request.json()\n    \n    if payload[\"event\"] == \"memory.store\":\n        memory = payload[\"data\"]\n        # Create Notion page\n        await notion.create_page(\n            title=memory[\"key\"],\n            content=memory[\"content\"],\n            tags=memory.get(\"tags\", [])\n        )\n    \n    elif payload[\"event\"] == \"memory.delete\":\n        # Delete from Notion\n        await notion.delete_page(memory_id=payload[\"data\"][\"id\"])\n    \n    return 200\n```\n\n### รูปแบบ 3: ทริกเกอร์ CI/CD\n\nทริกเกอร์ deployment เมื่อ memory \"release\" ถูกเก็บ:\n\n```python\n@app.post(\"/webhook\")\nasync def trigger_deploy(request):\n    payload = await request.json()\n    \n    if payload[\"event\"] == \"memory.store\":\n        memory = payload[\"data\"]\n        if memory.get(\"key\", \"\").startswith(\"release_\"):\n            # Trigger GitLab pipeline\n            await gitlab.trigger_pipeline(\n                project=\"synapse\",\n                ref=\"main\",\n                variables={\"RELEASE_MEMORY_ID\": memory[\"id\"]}\n            )\n    \n    return 200\n```\n\n### รูปแบบ 4: ปลุก Agent เมื่อ Human ส่งข้อความ\n\nทริกเกอร์การรัน LLM agent เมื่อ human ส่งข้อความแช็ต:\n\n```python\n@app.post(\"/webhook\")\nasync def wake_agent(request):\n    payload = await request.json()\n    \n    if payload[\"event\"] == \"chat.message_received\":\n        message = payload[\"data\"]\n        # Queue agent processing job\n        await job_queue.enqueue(\n            \"process_message\",\n            message_id=message[\"id\"],\n            content=message[\"content\"]\n        )\n    \n    return 200\n```\n\n### รูปแบบ 5: รวม Metric\n\nติดตามการเติบโตของ memory, กิจกรรมแช็ต, การทำ task เสร็จ:\n\n```python\n@app.post(\"/webhook\")\nasync def track_metrics(request):\n    payload = await request.json()\n    event = payload[\"event\"]\n    \n    metrics = {\n        \"memory.store\": \"memories_stored_total\",\n        \"memory.delete\": \"memories_deleted_total\",\n        \"chat.message_received\": \"messages_received_total\",\n        \"task.created\": \"tasks_created_total\",\n        \"task.completed\": \"tasks_completed_total\",\n    }\n    \n    if event in metrics:\n        await prometheus.increment(metrics[event])\n    \n    return 200\n```\n\n## การตรวจสอบ Signature\n\nตรวจสอบ webhook signature เสมอเพื่อป้องกันการปลอมแปลง:\n\n```python\nimport hmac\nimport hashlib\n\ndef verify_signature(payload_body: bytes, headers, secret: str) -> bool:\n    signature = headers.get(\"X-Synapse-Signature\", \"\")\n    if not signature.startswith(\"sha256=\"):\n        return False\n    \n    expected = hmac.new(\n        secret.encode(),\n        payload_body,\n        hashlib.sha256\n    ).hexdigest()\n    \n    return hmac.compare_digest(f\"sha256={expected}\", signature)\n```\n\n## ตรรกะ Retry\n\nSynapse retry webhook ที่ล้มเหลวด้วย exponential backoff handler ของคุณควร:\n\n1. **ส่งกลับ 200 อย่างรวดเร็ว** — อย่าทำงานหนักแบบ synchronous\n2. **จัดคิวงาน** — ใช้ระบบ background job\n3. **เป็น idempotent** — event เดียวกันอาจถูกส่งสองครั้ง\n\n```python\n@app.post(\"/webhook\")\nasync def handle(request):\n    payload = await request.json()\n    # Queue for async processing\n    await job_queue.enqueue(\"process_webhook\", payload)\n    # Return immediately\n    return 200\n```\n\n## Debugging Webhook\n\n### ตรวจสอบประวัติการจัดส่ง\n\nการจัดส่ง webhook ถูกบันทึก ตรวจสอบการจัดส่งล่าสุดของ webhook:\n\n```bash\n# Get webhook details including recent deliveries\ncurl -H \"Authorization: Bearer YOUR_MIND_KEY\" \\\n     https://synapse.schaefer.zone/webhooks/wh_001\n```\n\n### ทดสอบ webhook ด้วยตนเอง\n\n```bash\n# Trigger a test event\ncurl -X POST https://synapse.schaefer.zone/webhooks/wh_001/test \\\n  -H \"Authorization: Bearer YOUR_MIND_KEY\"\n```\n\n### ปัญหาทั่วไป\n\n| ปัญหา | วิธีแก้ |\n|-------|-----|\n| 4xx response | ตรวจ handler ส่งกลับ 200 |\n| 5xx response | server error — ตรวจ log แอป |\n| Timeout | ส่งกลับ 200 เร็ว, จัดคิวงาน async |\n| การจัดส่งซ้ำ | ทำ handler idempotent |\n| Signature ไม่ตรง | ตรวจ secret ถูกต้อง |\n\n## แนวทางปฏิบัติที่ดีที่สุด\n\n> [!TIP]\n> - **ตรวจสอบ signature เสมอ** — อย่าข้ามสิ่งนี้\n> - **ส่งกลับ 200 เร็ว** — อยะบล็อก Synapse\n> - **เป็น idempotent** — จัดการการจัดส่งซ้ำ\n> - **ใช้ event เฉพาะ** — `memory.store` ไม่ใช่ `*`\n> - **ตรวจสอบการล้มเหลวการจัดส่ง** — ตั้งค่า alerting\n\n## ขั้นตอนถัดไป\n\n- [Webhooks API](/docs/api/webhooks)\n- [Cron & Scheduler](/docs/api/cron)\n- [Persistent LLM Agent](/docs/guides/persistent-llm-agent)\n","content_html":"<h1>Webhook Automation</h1>\n<p>Webhook ช่วยให้คุณทริกเกอร์ระบบภายนอกเมื่อ Synapse event ทำงาน คู่มือนี้ครอบคลุมรูปแบบ automation ทั่วไป</p>\n<h2>รูปแบบทั่วไป</h2>\n<h3>รูปแบบ 1: แจ้งเตือนเมื่อ Memory Critical</h3>\n<p>ส่งข้อความ Slack เมื่อ memory critical ถูกเก็บ:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-comment\"># Webhook handler (your server)</span>\n<span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">handle</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    \n    <span class=\"hljs-comment\"># Verify signature</span>\n    <span class=\"hljs-keyword\">if</span> <span class=\"hljs-keyword\">not</span> verify_signature(payload, request.headers):\n        <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">401</span>\n    \n    <span class=\"hljs-keyword\">if</span> payload[<span class=\"hljs-string\">&quot;event&quot;</span>] == <span class=\"hljs-string\">&quot;memory.store&quot;</span>:\n        memory = payload[<span class=\"hljs-string\">&quot;data&quot;</span>]\n        <span class=\"hljs-keyword\">if</span> memory.get(<span class=\"hljs-string\">&quot;priority&quot;</span>) == <span class=\"hljs-string\">&quot;critical&quot;</span>:\n            <span class=\"hljs-comment\"># Send Slack notification</span>\n            <span class=\"hljs-keyword\">await</span> slack.post(\n                <span class=\"hljs-string\">f&quot;🚨 Critical memory stored: <span class=\"hljs-subst\">{memory[<span class=\"hljs-string\">&#x27;key&#x27;</span>]}</span>\\n<span class=\"hljs-subst\">{memory[<span class=\"hljs-string\">&#x27;content&#x27;</span>][:<span class=\"hljs-number\">200</span>]}</span>&quot;</span>\n            )\n    \n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><p>ลงทะเบียน webhook:</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/webhooks \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span> \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;url&quot;: &quot;https://my-app.com/webhook&quot;,\n    &quot;events&quot;: &quot;memory.store&quot;,\n    &quot;secret&quot;: &quot;my-hmac-secret&quot;\n  }&#x27;</span></code></pre><h3>รูปแบบ 2: Sync ไปยังระบบภายนอก</h3>\n<p>Sync memory ไปยัง Notion, Obsidian หรือ KB ภายนอกใด ๆ:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">sync_to_notion</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    \n    <span class=\"hljs-keyword\">if</span> payload[<span class=\"hljs-string\">&quot;event&quot;</span>] == <span class=\"hljs-string\">&quot;memory.store&quot;</span>:\n        memory = payload[<span class=\"hljs-string\">&quot;data&quot;</span>]\n        <span class=\"hljs-comment\"># Create Notion page</span>\n        <span class=\"hljs-keyword\">await</span> notion.create_page(\n            title=memory[<span class=\"hljs-string\">&quot;key&quot;</span>],\n            content=memory[<span class=\"hljs-string\">&quot;content&quot;</span>],\n            tags=memory.get(<span class=\"hljs-string\">&quot;tags&quot;</span>, [])\n        )\n    \n    <span class=\"hljs-keyword\">elif</span> payload[<span class=\"hljs-string\">&quot;event&quot;</span>] == <span class=\"hljs-string\">&quot;memory.delete&quot;</span>:\n        <span class=\"hljs-comment\"># Delete from Notion</span>\n        <span class=\"hljs-keyword\">await</span> notion.delete_page(memory_id=payload[<span class=\"hljs-string\">&quot;data&quot;</span>][<span class=\"hljs-string\">&quot;id&quot;</span>])\n    \n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><h3>รูปแบบ 3: ทริกเกอร์ CI/CD</h3>\n<p>ทริกเกอร์ deployment เมื่อ memory &quot;release&quot; ถูกเก็บ:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">trigger_deploy</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    \n    <span class=\"hljs-keyword\">if</span> payload[<span class=\"hljs-string\">&quot;event&quot;</span>] == <span class=\"hljs-string\">&quot;memory.store&quot;</span>:\n        memory = payload[<span class=\"hljs-string\">&quot;data&quot;</span>]\n        <span class=\"hljs-keyword\">if</span> memory.get(<span class=\"hljs-string\">&quot;key&quot;</span>, <span class=\"hljs-string\">&quot;&quot;</span>).startswith(<span class=\"hljs-string\">&quot;release_&quot;</span>):\n            <span class=\"hljs-comment\"># Trigger GitLab pipeline</span>\n            <span class=\"hljs-keyword\">await</span> gitlab.trigger_pipeline(\n                project=<span class=\"hljs-string\">&quot;synapse&quot;</span>,\n                ref=<span class=\"hljs-string\">&quot;main&quot;</span>,\n                variables={<span class=\"hljs-string\">&quot;RELEASE_MEMORY_ID&quot;</span>: memory[<span class=\"hljs-string\">&quot;id&quot;</span>]}\n            )\n    \n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><h3>รูปแบบ 4: ปลุก Agent เมื่อ Human ส่งข้อความ</h3>\n<p>ทริกเกอร์การรัน LLM agent เมื่อ human ส่งข้อความแช็ต:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">wake_agent</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    \n    <span class=\"hljs-keyword\">if</span> payload[<span class=\"hljs-string\">&quot;event&quot;</span>] == <span class=\"hljs-string\">&quot;chat.message_received&quot;</span>:\n        message = payload[<span class=\"hljs-string\">&quot;data&quot;</span>]\n        <span class=\"hljs-comment\"># Queue agent processing job</span>\n        <span class=\"hljs-keyword\">await</span> job_queue.enqueue(\n            <span class=\"hljs-string\">&quot;process_message&quot;</span>,\n            message_id=message[<span class=\"hljs-string\">&quot;id&quot;</span>],\n            content=message[<span class=\"hljs-string\">&quot;content&quot;</span>]\n        )\n    \n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><h3>รูปแบบ 5: รวม Metric</h3>\n<p>ติดตามการเติบโตของ memory, กิจกรรมแช็ต, การทำ task เสร็จ:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">track_metrics</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    event = payload[<span class=\"hljs-string\">&quot;event&quot;</span>]\n    \n    metrics = {\n        <span class=\"hljs-string\">&quot;memory.store&quot;</span>: <span class=\"hljs-string\">&quot;memories_stored_total&quot;</span>,\n        <span class=\"hljs-string\">&quot;memory.delete&quot;</span>: <span class=\"hljs-string\">&quot;memories_deleted_total&quot;</span>,\n        <span class=\"hljs-string\">&quot;chat.message_received&quot;</span>: <span class=\"hljs-string\">&quot;messages_received_total&quot;</span>,\n        <span class=\"hljs-string\">&quot;task.created&quot;</span>: <span class=\"hljs-string\">&quot;tasks_created_total&quot;</span>,\n        <span class=\"hljs-string\">&quot;task.completed&quot;</span>: <span class=\"hljs-string\">&quot;tasks_completed_total&quot;</span>,\n    }\n    \n    <span class=\"hljs-keyword\">if</span> event <span class=\"hljs-keyword\">in</span> metrics:\n        <span class=\"hljs-keyword\">await</span> prometheus.increment(metrics[event])\n    \n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><h2>การตรวจสอบ Signature</h2>\n<p>ตรวจสอบ webhook signature เสมอเพื่อป้องกันการปลอมแปลง:</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-keyword\">import</span> hmac\n<span class=\"hljs-keyword\">import</span> hashlib\n\n<span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">verify_signature</span>(<span class=\"hljs-params\">payload_body: <span class=\"hljs-built_in\">bytes</span>, headers, secret: <span class=\"hljs-built_in\">str</span></span>) -&gt; <span class=\"hljs-built_in\">bool</span>:\n    signature = headers.get(<span class=\"hljs-string\">&quot;X-Synapse-Signature&quot;</span>, <span class=\"hljs-string\">&quot;&quot;</span>)\n    <span class=\"hljs-keyword\">if</span> <span class=\"hljs-keyword\">not</span> signature.startswith(<span class=\"hljs-string\">&quot;sha256=&quot;</span>):\n        <span class=\"hljs-keyword\">return</span> <span class=\"hljs-literal\">False</span>\n    \n    expected = hmac.new(\n        secret.encode(),\n        payload_body,\n        hashlib.sha256\n    ).hexdigest()\n    \n    <span class=\"hljs-keyword\">return</span> hmac.compare_digest(<span class=\"hljs-string\">f&quot;sha256=<span class=\"hljs-subst\">{expected}</span>&quot;</span>, signature)</code></pre><h2>ตรรกะ Retry</h2>\n<p>Synapse retry webhook ที่ล้มเหลวด้วย exponential backoff handler ของคุณควร:</p>\n<ol>\n<li><strong>ส่งกลับ 200 อย่างรวดเร็ว</strong> — อย่าทำงานหนักแบบ synchronous</li>\n<li><strong>จัดคิวงาน</strong> — ใช้ระบบ background job</li>\n<li><strong>เป็น idempotent</strong> — event เดียวกันอาจถูกส่งสองครั้ง</li>\n</ol>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-meta\">@app.post(<span class=\"hljs-params\"><span class=\"hljs-string\">&quot;/webhook&quot;</span></span>)</span>\n<span class=\"hljs-keyword\">async</span> <span class=\"hljs-keyword\">def</span> <span class=\"hljs-title function_\">handle</span>(<span class=\"hljs-params\">request</span>):\n    payload = <span class=\"hljs-keyword\">await</span> request.json()\n    <span class=\"hljs-comment\"># Queue for async processing</span>\n    <span class=\"hljs-keyword\">await</span> job_queue.enqueue(<span class=\"hljs-string\">&quot;process_webhook&quot;</span>, payload)\n    <span class=\"hljs-comment\"># Return immediately</span>\n    <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">200</span></code></pre><h2>Debugging Webhook</h2>\n<h3>ตรวจสอบประวัติการจัดส่ง</h3>\n<p>การจัดส่ง webhook ถูกบันทึก ตรวจสอบการจัดส่งล่าสุดของ webhook:</p>\n<pre><code class=\"hljs language-bash\"><span class=\"hljs-comment\"># Get webhook details including recent deliveries</span>\ncurl -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span> \\\n     https://synapse.schaefer.zone/webhooks/wh_001</code></pre><h3>ทดสอบ webhook ด้วยตนเอง</h3>\n<pre><code class=\"hljs language-bash\"><span class=\"hljs-comment\"># Trigger a test event</span>\ncurl -X POST https://synapse.schaefer.zone/webhooks/wh_001/test \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span></code></pre><h3>ปัญหาทั่วไป</h3>\n<table>\n<thead>\n<tr>\n<th>ปัญหา</th>\n<th>วิธีแก้</th>\n</tr>\n</thead>\n<tbody><tr>\n<td>4xx response</td>\n<td>ตรวจ handler ส่งกลับ 200</td>\n</tr>\n<tr>\n<td>5xx response</td>\n<td>server error — ตรวจ log แอป</td>\n</tr>\n<tr>\n<td>Timeout</td>\n<td>ส่งกลับ 200 เร็ว, จัดคิวงาน async</td>\n</tr>\n<tr>\n<td>การจัดส่งซ้ำ</td>\n<td>ทำ handler idempotent</td>\n</tr>\n<tr>\n<td>Signature ไม่ตรง</td>\n<td>ตรวจ secret ถูกต้อง</td>\n</tr>\n</tbody></table>\n<h2>แนวทางปฏิบัติที่ดีที่สุด</h2>\n<div class=\"callout callout-ok\"></div><h2>ขั้นตอนถัดไป</h2>\n<ul>\n<li><a href=\"/docs/api/webhooks\">Webhooks API</a></li>\n<li><a href=\"/docs/api/cron\">Cron &amp; Scheduler</a></li>\n<li><a href=\"/docs/guides/persistent-llm-agent\">Persistent LLM Agent</a></li>\n</ul>\n","urls":{"html":"/docs/guides/webhook-automation","text":"/docs/guides/webhook-automation?format=text","json":"/docs/guides/webhook-automation?format=json","llm":"/docs/guides/webhook-automation?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}