{
  "name": "Cut No-Shows With Automated SMS Reminders for Calendly Bookings",
  "nodes": [
    {
      "name": "Schedule",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1,
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "hours",
              "hoursInterval": 24
            }
          ]
        }
      },
      "notes": "Daily, looking 24 hours ahead.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Calendly — Tomorrow's Bookings",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/replace-with-real-endpoint",
        "sendBody": true,
        "options": {}
      },
      "notes": "Calendly has no dedicated n8n node — use an HTTP Request to the Calendly API. List upcoming appointments.",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Send SMS",
      "type": "n8n-nodes-base.twilio",
      "typeVersion": 1,
      "parameters": {
        "operation": "send",
        "message": "=Reminder: your appointment is at {{ $json.start_time }}. Reschedule: [link]"
      },
      "notes": "Use a Twilio number; WhatsApp requires an approved sender.",
      "position": [
        740,
        300
      ]
    },
    {
      "name": "Respond / Finish",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "parameters": {},
      "notes": "End of flow — extend with extra steps as needed.",
      "position": [
        980,
        300
      ]
    }
  ],
  "connections": {
    "Schedule": {
      "main": [
        [
          {
            "node": "Calendly — Tomorrow's Bookings",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Calendly — Tomorrow's Bookings": {
      "main": [
        [
          {
            "node": "Send SMS",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Send SMS": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
