Sheets to WhatsApp

    Shared 4/29/2026

    0 views

    Visual Workflow

    JSON Code

    {
      "name": "Sheets to WhatsApp",
      "nodes": [
        {
          "id": "1",
          "name": "Google Sheets Trigger",
          "type": "n8n-nodes-base.googleSheetsTrigger",
          "position": [
            250,
            300
          ],
          "parameters": {
            "range": "Sheet1!A:Z",
            "sheetId": "YOUR_SHEET_ID"
          }
        },
        {
          "id": "2",
          "name": "Twilio",
          "type": "n8n-nodes-base.twilio",
          "position": [
            500,
            300
          ],
          "parameters": {
            "to": "=whatsapp:{{$json.telefon}}",
            "from": "whatsapp:+14155238886",
            "message": "=Merhaba {{$json.ad}}, randevunuz onaylandı.",
            "operation": "send"
          }
        }
      ],
      "connections": {
        "Google Sheets Trigger": {
          "main": [
            [
              {
                "node": "Twilio",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    }