Recordatorio de hidratación diario 💧

Intermedio

Este es unPersonal Productivity, Multimodal AIflujo de automatización del dominio deautomatización que contiene 8 nodos.Utiliza principalmente nodos como Set, Wait, Switch, Airtable, HttpRequest. Recordatorio diario de hidratación en Slack/Discord y seguimiento de reacciones en Airtable

Requisitos previos
  • Clave de API de Airtable
  • Pueden requerirse credenciales de autenticación para la API de destino
Vista previa del flujo de trabajo
Visualización de las conexiones entre nodos, con soporte para zoom y panorámica
Exportar flujo de trabajo
Copie la siguiente configuración JSON en n8n para importar y usar este flujo de trabajo
{
  "meta": {
    "instanceId": "__PLACEHOLDER_INSTANCE_ID__"
  },
  "name": "Daily Hydration Hug 💧",
  "nodes": [
    {
      "id": "trigger-schedule",
      "name": "Todos los días a las 10 AM y 3 PM",
      "type": "n8n-nodes-base.scheduleTrigger",
      "notes": "🕒 Schedule: Daily Wellness Nudges\n\nTriggers the workflow twice daily:\n- 10:00 AM\n- 3:00 PM\n\n🔹 Set timezone in Make settings to match your community.\n\nThis is the heartbeat of the hydration reminder system.",
      "position": [
        250,
        300
      ],
      "parameters": {},
      "typeVersion": 1,
      "notesAlignment": "top"
    },
    {
      "id": "random-gif-picker",
      "name": "Seleccionar GIF aleatorio",
      "type": "n8n-nodes-base.set",
      "notes": "🖼️ Random GIF Selector\n\nRotates through a curated list of calming hydration-themed GIFs.\n\n💡 Hosted on Giphy, Imgur, or CDN.\n\nExample URLs:\n- https://media.giphy.com/.../water.gif\n- https://example.com/hug.gif\n\nYou can expand the list for seasonal variety.",
      "position": [
        500,
        300
      ],
      "inputNames": [
        "GIFs"
      ],
      "parameters": {},
      "outputNames": [
        "With GIF"
      ],
      "notesAlignment": "top"
    },
    {
      "id": "send-slack-message",
      "name": "Enviar a Slack",
      "type": "n8n-nodes-base.httpRequest",
      "notes": "📤 Send Message to Slack\n\nPosts a friendly hydration reminder with:\n- Soothing text\n- Random GIF (accessory)\n\n✅ Uses Slack's Block Kit for rich formatting.\n\n🔧 Replace URL with Discord webhook if needed.",
      "position": [
        750,
        250
      ],
      "parameters": {},
      "notesAlignment": "top"
    },
    {
      "id": "send-discord-message",
      "name": "Enviar a Discord",
      "type": "n8n-nodes-base.httpRequest",
      "notes": "📤 Send Message to Discord\n\nSends a clean, embed-based message with hydration GIF.\n\n🎨 Color: Soft blue (#2C7873 → 2899551)\n\n💡 Use only one send node (Slack OR Discord) unless routing dynamically.",
      "position": [
        750,
        350
      ],
      "parameters": {},
      "notesAlignment": "top"
    },
    {
      "id": "wait-24-hours",
      "name": "Esperar 24 Horas",
      "type": "n8n-nodes-base.wait",
      "notes": "⏸️ Wait for Reactions\n\nPauses 24 hours to allow members to react with ✅.\n\n🔹 You can reduce to 12h for faster cycles.\n\n⚠️ Do not skip: needed to capture engagement.",
      "position": [
        1000,
        300
      ],
      "parameters": {},
      "notesAlignment": "top"
    },
    {
      "id": "fetch-reactions-slack",
      "name": "Obtener Reacciones de Slack",
      "type": "n8n-nodes-base.httpRequest",
      "notes": "🔍 Fetch Slack Reactions\n\nUses Slack API to check if ✅ was added.\n\n🔐 Requires Bot Token with:\n- reactions:read\n- channels:read\n\n💡 Store message timestamp from initial post.",
      "position": [
        1250,
        250
      ],
      "parameters": {},
      "notesAlignment": "top"
    },
    {
      "id": "filter-yes-reactions",
      "name": "Filtrar Reacciones ✅",
      "type": "n8n-nodes-base.switch",
      "notes": "✅ Filter for Checkmark Reactions\n\nOnly continues if at least one ✅ (white_check_mark) was added.\n\n🔧 You can add more emoji filters (e.g., 💧, 🫶) for expanded tracking.",
      "position": [
        1500,
        300
      ],
      "parameters": {},
      "notesAlignment": "top"
    },
    {
      "id": "airtable-log-reaction",
      "name": "Registrar en Airtable",
      "type": "n8n-nodes-base.airtable",
      "notes": "📊 Log Reaction in Airtable\n\nSaves each ✅ reaction as a new record.\n\n🔁 Used later to generate monthly 'Hydration Heroes' leaderboard.\n\n💡 Link to user profiles or add tags for segmentation.",
      "position": [
        1750,
        300
      ],
      "parameters": {},
      "notesAlignment": "top"
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "callerPolicy": "none",
    "saveDataError": "all",
    "executionOrder": "parallel",
    "saveDataSuccess": "all"
  },
  "connections": {
    "send-slack-message": {
      "main": [
        [
          {
            "node": "wait-24-hours",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "wait-24-hours": {
      "main": [
        [
          {
            "node": "fetch-reactions-slack",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "random-gif-picker": {
      "main": [
        [
          {
            "node": "send-slack-message",
            "type": "main",
            "index": 0
          },
          {
            "node": "send-discord-message",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "send-discord-message": {
      "main": [
        [
          {
            "node": "wait-24-hours",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "fetch-reactions-slack": {
      "main": [
        [
          {
            "node": "filter-yes-reactions",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "filter-yes-reactions": {
      "main": [
        [
          {
            "node": "airtable-log-reaction",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "trigger-schedule": {
      "main": [
        [
          {
            "node": "random-gif-picker",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Preguntas frecuentes

¿Cómo usar este flujo de trabajo?

Copie el código de configuración JSON de arriba, cree un nuevo flujo de trabajo en su instancia de n8n y seleccione "Importar desde JSON", pegue la configuración y luego modifique la configuración de credenciales según sea necesario.

¿En qué escenarios es adecuado este flujo de trabajo?

Intermedio - Productividad personal, IA Multimodal

¿Es de pago?

Este flujo de trabajo es completamente gratuito, puede importarlo y usarlo directamente. Sin embargo, tenga en cuenta que los servicios de terceros utilizados en el flujo de trabajo (como la API de OpenAI) pueden requerir un pago por su cuenta.

Información del flujo de trabajo
Nivel de dificultad
Intermedio
Número de nodos8
Categoría2
Tipos de nodos6
Descripción de la dificultad

Adecuado para usuarios con experiencia intermedia, flujos de trabajo de complejidad media con 6-15 nodos

Autor
Shelly-Ann Davy

Shelly-Ann Davy

@SheCodesFlow

Founder of The Workflow Muse & @SheCodesFlow. I craft elegant, task-focused automations for creators, founders, and soft-tech enthusiasts. “Automate with grace. Scale with power.”

Enlaces externos
Ver en n8n.io

Compartir este flujo de trabajo

Categorías

Categorías: 34