Skip to main content

Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail

Workflow preview

Workflow preview
100%
Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

What is Elderwatch Elder Watch is a simple system that checks daily vitals — like heart rate, oxygen, and walking symmetry — using data from an iPhone or Apple Watch. If something looks off — say o...

Best for

  • Miscellaneous automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.stickynote, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.gmail

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Praveena.

Original n8n.io source

1.1 Workflow description

Title
Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail
Workflow name
Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail

What is Elderwatch

Elder Watch is a simple system that checks daily vitals — like heart rate, oxygen, and walking symmetry — using data from an iPhone or Apple Watch. If something looks off — say oxygen drops or heart rate spikes — it flags that as “attention required.” And depending on that status, it can either: Email a daily report to a caregiver Or if there’s an alert — trigger a phone call via Twilio

Why do we need this

Elder Watch can help older people living alone for children or care givers to keey an eye on without obsessively checking apps. It’s useful for clinics that run home-care programs.

Requirements

  1. Self hosted or cloud N8N
  2. Apple health vis iphone/watch
  3. Twilio VOIP phone number (to place a call)

Workflows

  1. Core workflow for getting health data, processing and making a phone call.
  2. Twilio workflow to invoke Calls API to place an outbound voice call.

twilio workflow

{
  "name": "Twilio Bridge Caller copy",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "twilio-call",
        "responseMode": "responseNode",
        "options": {}
      },
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        0,
        0
      ],
      "id": "ca3e6c69-3e7f-4d28-b699-4789a6fa2a6d",
      "name": "Webhook",
      "webhookId": "eb3d63df-800c-401d-931a-c6fba7d834ae"
    },
    {
      "parameters": {
        "respondWith": "text",
        "responseBody": "={{ $json.body }}",
        "options": {
          "responseCode": 200,
          "responseHeaders": {
            "entries": [
              {
                "name": "Content-Type",
                "value": "text/xml"
              }
            ]
          }
        }
      },
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        580,
        0
      ],
      "id": "6587b7e2-ace8-4e2b-9f4b-ed028a363c25",
      "name": "Respond to Webhook"
    },
    {
      "parameters": {
        "jsCode": "const summary = $input.first().json.query.summary || 'No summary, check mail for critical health info';\n\nreturn [\n  {\n    json: {\n      body: `<Response>\n  <Say voice=\"alice\">${summary}</Say>\n</Response>`\n    }\n  }\n];\n"
      },
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        340,
        0
      ],
      "id": "0d4abf87-daf3-4533-8811-64ae61265f5d",
      "name": "Voice Twilio response"
    }
  ],
  "pinData": {
    "Webhook": [
      {
        "json": {
          "headers": {
            "host": "n8n.domain.com",
            "user-agent": "curl/8.7.1",
            "content-length": "0",
            "accept": "*/*",
            "accept-encoding": "gzip, br"
            
          },
          "params": {},
          "query": {
            "lead": " 44711111111111"
          },
          "body": {},
          "webhookUrl": "https://n8n.domain.com/webhook/twilio-call",
          "executionMode": "production"
        }
      }
    ]
  },
  "connections": {
    "Webhook": {
      "main": [
        [
          {
            "node": "Voice Twilio response",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Voice Twilio response": {
      "main": [
        [
          {
            "node": "Respond to Webhook",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": true,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "b58c5a12-75be-4b1d-b144-8c7251468021",
  "meta": {
    "instanceId": "8dc0e8a0878d0086b2f46ef04bb00ae07186c936d82d0f0a67563e9652996d33"
  },
  "id": "RHaKqf8Wqt7fIuGH",
  "tags": []
}

Samples

Resources

https://www.youtube.com/watch?v=HYk5_jtMlgc

Questions/Support

Contact me on [email protected].

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Webhook

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 2 - Process & Flag Health

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 3 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Attention Required?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 6 - Twilio Call

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 7 - Warning Email

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 8 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - All Clear Gmail

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

3. Summary Table

Workflow Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail
Complexity intermediate
Nodes 9
Categories Miscellaneous
Author Praveena
Published 01 Jun 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/4563/4563.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Monitor elderly health vitals & send alerts with Apple Health, Twilio & Gmail do?

What is Elderwatch Elder Watch is a simple system that checks daily vitals — like heart rate, oxygen, and walking symmetry — using data from an iPhone or Apple Watch. If something looks off — say o...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Miscellaneous use case.