{
  "name": "Vulcani — Missed-Call Text-Back (free)",
  "nodes": [
    {
      "parameters": {
        "content": "## Missed-Call Text-Back  ·  free from vulcani.io\n\n**What it does:** when you miss a call, this instantly texts the caller back so they don't just hang up and dial a competitor. Most people who hit voicemail never leave one — this catches them.\n\n**Wire it (1 cred, ~3 min):**\n1. **Webhook** — copy the Production URL. In your Twilio number's Voice settings, set the **\"Call Status Changes\" callback** to this URL (POST). Twilio sends `From`, `To`, `CallStatus`.\n2. **Twilio** — set your Twilio credential on *Text Back*. Put your business name + number in the message.\n\n**Notes:**\n- The IF only texts on a genuine miss (`no-answer` / `busy` / `failed`) — not completed calls.\n- Keep the text short, warm, and useful (template included). A real person (or an AI agent) takes the conversation from there.\n- Want the call actually *answered* 24/7 instead of just texted back? That's the AI phone agent → vulcani.io\n\nMore free workflows → vulcani.io/free/",
        "height": 440,
        "width": 390,
        "color": 4
      },
      "id": "c3d4e5f6-0001-4000-8000-000000000001",
      "name": "README",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [-180, 60]
    },
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "missed-call",
        "responseMode": "lastNode",
        "options": {}
      },
      "id": "c3d4e5f6-0002-4000-8000-000000000002",
      "name": "Call Status",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [320, 320],
      "webhookId": "vulcani-missed-call"
    },
    {
      "parameters": {
        "conditions": {
          "options": { "caseSensitive": false, "leftValue": "", "typeValidation": "loose", "version": 2 },
          "conditions": [
            {
              "id": "missed-1",
              "leftValue": "={{ $json.body.CallStatus || $json.CallStatus }}",
              "rightValue": "completed",
              "operator": { "type": "string", "operation": "notEquals" }
            }
          ],
          "combinator": "and"
        },
        "options": {}
      },
      "id": "c3d4e5f6-0003-4000-8000-000000000003",
      "name": "Missed?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "position": [560, 320]
    },
    {
      "parameters": {
        "operation": "send",
        "from": "YOUR_TWILIO_NUMBER",
        "to": "={{ $json.body.From || $json.From }}",
        "message": "Sorry we missed your call! This is [Your Business]. How can we help? Reply right here and we'll get back to you fast.",
        "options": {}
      },
      "id": "c3d4e5f6-0004-4000-8000-000000000004",
      "name": "Text Back",
      "type": "n8n-nodes-base.twilio",
      "typeVersion": 1,
      "position": [800, 240]
    }
  ],
  "connections": {
    "Call Status": { "main": [[{ "node": "Missed?", "type": "main", "index": 0 }]] },
    "Missed?": { "main": [[{ "node": "Text Back", "type": "main", "index": 0 }], []] }
  },
  "settings": { "executionOrder": "v1" }
}
