AutomationFlowsSlack & Telegram › Workflow 2488

Workflow 2488

Workflow 2488. Uses slack, notion. Scheduled trigger; 24 nodes.

Cron / scheduled trigger★★★★☆ complexity24 nodesSlackNotion
Slack & Telegram Trigger: Cron / scheduled Nodes: 24 Complexity: ★★★★☆ Added:

This workflow follows the Notion → Slack recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "id": "d2e53ca7-07e1-499b-8f29-9a2a1de10824",
      "name": "Filter incomplete tasks only",
      "type": "n8n-nodes-base.filter",
      "position": [
        220,
        380
      ],
      "parameters": {
        "conditions": {
          "string": [
            {
              "value1": "={{ $json.Status }}",
              "value2": "Done",
              "operation": "notEqual"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "2ff58ec6-58a3-4bf0-adba-d2d0ae87944e",
      "name": "Get All Slack Users (Darryn)",
      "type": "n8n-nodes-base.slack",
      "position": [
        440,
        380
      ],
      "parameters": {
        "resource": "user",
        "operation": "getAll",
        "authentication": "oAuth2"
      },
      "credentials": {
        "slackOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "executeOnce": false,
      "typeVersion": 1
    },
    {
      "id": "ff9a6853-b254-4a4f-aa8d-89546e78de0b",
      "name": "Get To Dos from Tasks Database",
      "type": "n8n-nodes-base.notion",
      "position": [
        20,
        380
      ],
      "parameters": {
        "options": {},
        "resource": "databasePage",
        "operation": "getAll",
        "databaseId": {
          "__rl": true,
          "mode": "list",
          "value": "1197be57-c54f-815f-8d3b-fdbbb741b19c",
          "cachedResultUrl": "https://www.notion.so/1197be57c54f815f8d3bfdbbb741b19c",
          "cachedResultName": "Tasks "
        }
      },
      "credentials": {
        "notionApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "c9856834-1a6b-4e2e-bb77-9b3c74c34ccf",
      "name": "Schedule Mon - Friday @ 09:00am",
      "type": "n8n-nodes-base.cron",
      "position": [
        -600,
        380
      ],
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "mode": "custom",
              "cronExpression": "0 9 * * 1,2,3,4,5"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "41e67948-1d4a-4654-8817-dbcf61eb061d",
      "name": "Set Notion User Emails",
      "type": "n8n-nodes-base.set",
      "position": [
        -380,
        380
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "94663427-c288-446a-96df-ddfc3fe332f0",
              "name": "User 1 Notion Email",
              "type": "string",
              "value": "darryn@optimus01.co.za"
            },
            {
              "id": "bed7739d-640a-43cc-9fb5-4472844ccc09",
              "name": "User 2 Notion Email",
              "type": "string",
              "value": "cassie@optimus01.com"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "3a59b653-dd65-4443-b2d0-44cce3e780dd",
      "name": "Set Slack User Full Name",
      "type": "n8n-nodes-base.set",
      "position": [
        -180,
        380
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "94663427-c288-446a-96df-ddfc3fe332f0",
              "name": "User 1 Slack Full Name",
              "type": "string",
              "value": "Darryn Balanco"
            },
            {
              "id": "bed7739d-640a-43cc-9fb5-4472844ccc09",
              "name": "User 2 Slack Full Name",
              "type": "string",
              "value": "Cassandra Balanco"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "340af945-5e22-408f-86de-b4e4160ec751",
      "name": "Send a Direct Message to User 1",
      "type": "n8n-nodes-base.slack",
      "position": [
        1200,
        260
      ],
      "parameters": {
        "text": "# TO DO",
        "channel": "={{ $json.id }}",
        "attachments": [
          {
            "title": "=\u2611\ufe0f  {{ $('Filter incomplete tasks only').item.json.Task }} (Due: {{ $('Filter incomplete tasks only').item.json.Due.start }})"
          }
        ],
        "otherOptions": {
          "mrkdwn": true
        },
        "authentication": "oAuth2"
      },
      "credentials": {
        "slackOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "df9bc0b5-7a34-407d-a412-dd4022943e41",
      "name": "Send a Direct Message to User 2",
      "type": "n8n-nodes-base.slack",
      "position": [
        1200,
        500
      ],
      "parameters": {
        "text": "# TO DO",
        "channel": "={{ $json.id }}",
        "attachments": [
          {
            "title": "=\u2611\ufe0f  {{ $('Filter incomplete tasks only').item.json.Task }} (Due: {{ $('Filter incomplete tasks only').item.json.Due.start }})"
          }
        ],
        "otherOptions": {
          "mrkdwn": true
        },
        "authentication": "oAuth2"
      },
      "credentials": {
        "slackOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "f6ab26d3-27d9-4b06-886d-64bbaf5d4f92",
      "name": "Switch for Notion Users Emails",
      "type": "n8n-nodes-base.switch",
      "position": [
        720,
        380
      ],
      "parameters": {
        "rules": {
          "values": [
            {
              "outputKey": "User 1 Notion Tasks",
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "strict"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "operator": {
                      "type": "string",
                      "operation": "contains"
                    },
                    "leftValue": "={{ $('Filter incomplete tasks only').item.json['Notion User'].toString() }}",
                    "rightValue": "={{ $('Set Notion User Emails').item.json['User 1 Notion Email'] }}"
                  }
                ]
              },
              "renameOutput": true
            },
            {
              "outputKey": "User 2 Notion Tasks",
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "strict"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "d0bf512b-15e4-4dd6-b468-50cec25c3e2c",
                    "operator": {
                      "type": "string",
                      "operation": "contains"
                    },
                    "leftValue": "={{ $('Filter incomplete tasks only').item.json['Notion User'].toString() }}",
                    "rightValue": "={{ $('Set Notion User Emails').item.json['User 2 Notion Email'] }}"
                  }
                ]
              },
              "renameOutput": true
            }
          ]
        },
        "options": {}
      },
      "typeVersion": 3.2
    },
    {
      "id": "4492bc68-e8ef-4417-b3d2-d7fb9418db17",
      "name": "Filter Slack User 1 Full Name",
      "type": "n8n-nodes-base.filter",
      "position": [
        980,
        260
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "6aafbbd7-065c-4253-b905-07c7df9210c1",
              "operator": {
                "name": "filter.operator.equals",
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "={{ $json.profile.real_name }}",
              "rightValue": "={{ $('Set Slack User Full Name').item.json['User 1 Slack Full Name'] }}"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "159b3436-9141-4769-a495-14e9fdd37f1d",
      "name": "Filter Slack User 2 Full Name",
      "type": "n8n-nodes-base.filter",
      "position": [
        980,
        500
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "6aafbbd7-065c-4253-b905-07c7df9210c1",
              "operator": {
                "name": "filter.operator.equals",
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "={{ $json.profile.real_name }}",
              "rightValue": "={{ $('Set Slack User Full Name').item.json['User 2 Slack Full Name'] }}"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "5b863aea-a4d5-486e-82a9-a4f2b713f8f8",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -670.7551894447033,
        180
      ],
      "parameters": {
        "color": 7,
        "width": 232.28640473083397,
        "height": 395.93315440190497,
        "content": "\uc77c\uc815: \uc6d4\uc694\uc77c - \uae08\uc694\uc77c \uc624\uc804 09:00  \n\uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \ub9e4 \uc8fc\uc911 \uc624\uc804 9:00\uc5d0 \ud2b8\ub9ac\uac70\ud569\ub2c8\ub2e4. \uc774\uac83\uc740 \ub9ac\ub9c8\uc778\ub354\uac00 \ud558\ub8e8\uc758 \uc2dc\uc791\uc5d0 \ubcf4\ub0b4\uc9c0\ub294 \uac83\uc744 \ubcf4\uc7a5\ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "420236d0-5139-4faf-9b2e-dca35b15a6b9",
      "name": "Sticky Note2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -424.62240527764834,
        180
      ],
      "parameters": {
        "color": 7,
        "width": 377.1025213664834,
        "height": 397.4539493179217,
        "content": "## Notion \uc0ac\uc6a9\uc790 \uc774\uba54\uc77c \ubc0f Slack \uc0ac\uc6a9\uc790 \uc804\uccb4 \uc774\ub984 \uc124\uc815\n\nNotion \uc0ac\uc6a9\uc790\uc758 \uc774\uba54\uc77c \uc8fc\uc18c\ub97c \uc800\uc7a5\ud558\uace0, Slack \uc0ac\uc6a9\uc790\uc758 \uc804\uccb4 \uc774\ub984\uc744 \ub098\uc911\uc5d0 \uc6cc\ud06c\ud50c\ub85c\uc6b0\uc5d0\uc11c \ub9e4\uce6d\ud558\uae30 \uc704\ud574 \uc800\uc7a5\ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "751c8fb7-0b38-4a83-bf55-82be400f59a7",
      "name": "Sticky Note4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -33.06639208352749,
        180
      ],
      "parameters": {
        "width": 400.70229197070614,
        "height": 397.31352154531925,
        "content": "## \uc791\uc5c5 \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c \ud560 \uc77c \uac00\uc838\uc624\uae30 \ubc0f \ubbf8\uc644\ub8cc \uc791\uc5c5\ub9cc \ud544\ud130\ub9c1  \n\uc9c0\uc815\ub41c Notion \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c \ubaa8\ub4e0 \uc791\uc5c5\uc744 \uac00\uc838\uc624\uace0, 'Done'\uc73c\ub85c \ud45c\uc2dc\ub41c \uc791\uc5c5\uc744 \ud544\ud130\ub9c1\ud558\uc5ec \ubbf8\uc644\ub8cc \uc791\uc5c5\ub9cc \ucc98\ub9ac\ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "4e352442-ce25-4e36-b334-c6b1e0896d06",
      "name": "Sticky Note6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        384.62240527764834,
        180
      ],
      "parameters": {
        "color": 3,
        "width": 240.32164378964495,
        "height": 398.1826056622561,
        "content": "## \ubaa8\ub4e0 Slack \uc0ac\uc6a9\uc790 \uac00\uc838\uc624\uae30\n\nSlack\uc5d0\uc11c \ubaa8\ub4e0 \uc0ac\uc6a9\uc790\ub97c \uac00\uc838\uc640\uc11c \uc54c\ub9bc\uc744 \ubc1b\uc544\uc57c \ud560 \uc0ac\ub78c\uc744 \uc801\uc808\ud788 \uc2dd\ubcc4\ud560 \uc218 \uc788\uac8c \ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "5dde41f6-b66f-4abb-8bc6-9226b06e9331",
      "name": "Sticky Note7",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        640,
        180
      ],
      "parameters": {
        "width": 267.7344316658903,
        "height": 398.29835161802384,
        "content": "## Notion \uc0ac\uc6a9\uc790 \uc774\uba54\uc77c \uc2a4\uc704\uce58  \nNotion\uc5d0\uc11c \uc774\uba54\uc77c \uc8fc\uc18c\ub97c \ube44\uad50\ud558\uc5ec \uc5b4\ub5a4 \uc0ac\uc6a9\uc790\uac00 (\uc0ac\uc6a9\uc790 1 \ub610\ub294 \uc0ac\uc6a9\uc790 2)\uc5d0\uac8c \uc791\uc5c5\uc774 \ud560\ub2f9\ub418\uc5c8\ub294\uc9c0 \uacb0\uc815\ud558\uace0, \uc6cc\ud06c\ud50c\ub85c\ub97c \uadf8\uc5d0 \ub530\ub77c \ub77c\uc6b0\ud305\ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "3babdb0f-29d7-4ff7-9174-3ae0b5a4979d",
      "name": "Sticky Note9",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        920,
        83.27096255097126
      ],
      "parameters": {
        "color": 3,
        "width": 455.87875185735516,
        "height": 592.983420807127,
        "content": "Slack \uc0ac\uc6a9\uc790 \ud544\ud130\ub9c1 \ubc0f \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc9c1\uc811 \uba54\uc2dc\uc9c0 \ubcf4\ub0b4\uae30\n\nSlack \uc0ac\uc6a9\uc790\ub97c \ud544\ud130\ub9c1\ud558\uc5ec User 1\uc744 \uc804\uccb4 \uc774\ub984\uc5d0 \uae30\ubc18\ud574 \uc2dd\ubcc4\ud558\uace0, \uc0ac\uc6a9\uc790\uc5d0\uac8c \ubbf8\uc644\ub8cc \uc791\uc5c5\uc758 \uc138\ubd80 \uc0ac\ud56d\uacfc \ud568\uaed8 \uc9c1\uc811 Slack \uba54\uc2dc\uc9c0\ub97c \ubcf4\ub0c5\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "43e36d12-b477-49fa-aed0-e28304310894",
      "name": "Sticky Note11",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1140,
        260
      ],
      "parameters": {
        "color": 6,
        "width": 396.6384066163515,
        "height": 282.5799404564392,
        "content": "### \uc774\uc640 \uac19\uc740 \ud15c\ud50c\ub9bf \ub354 \ub9ce\uc774 \uac00\uc838\uc624\uae30 \ud83d\udc47\n[![\ube44\ub514\uc624 \uc378\ub124\uc77c](https://onlinethinking.io/wp-content/uploads/2024/10/Lets-Automate-It-Community.png)](http://onlinethinking.io/community)"
      },
      "typeVersion": 1
    },
    {
      "id": "6eefe33e-0dc9-4ee8-8ad4-f61078e74227",
      "name": "Sticky Note14",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1520,
        620
      ],
      "parameters": {
        "width": 777.0408639013781,
        "height": 216.76250654583106,
        "content": "## \uc124\uc815\n1. **`Notion \uc5f0\uacb0`**: Notion \uacc4\uc815\uc744 \uc5f0\uacb0\ud558\uace0 \uc791\uc5c5\uc774 \ud3ec\ud568\ub41c \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \uc9c0\uc815\ud574\uc57c \ud569\ub2c8\ub2e4.\n2. **`Slack \uc5f0\uacb0`**: OAuth\ub97c \uc0ac\uc6a9\ud558\uc5ec Slack\uc744 \uc778\uc99d\ud558\uc5ec \uc6cc\ud06c\ud50c\ub85c\uac00 \uadc0\ud558\ub97c \ub300\uc2e0\ud558\uc5ec \uba54\uc2dc\uc9c0\ub97c \ubcf4\ub0bc \uc218 \uc788\ub3c4\ub85d \ud569\ub2c8\ub2e4.\n3. **`Notion \uc0ac\uc6a9\uc790 \uc774\uba54\uc77c \uc8fc\uc18c \ub9e4\ud551`**: Notion \uc0ac\uc6a9\uc790\uc758 \uc774\uba54\uc77c \uc8fc\uc18c\uac00 \ud574\ub2f9 Notion \uc0ac\uc6a9\uc790 \ud504\ub85c\ud544\uc5d0 \uc62c\ubc14\ub974\uac8c \ub9e4\ud551\ub418\uc5c8\ub294\uc9c0 \ud655\uc778\ud569\ub2c8\ub2e4.\n4. **`Slack \uc0ac\uc6a9\uc790 \uc804\uccb4 \uc774\ub984 \ub9e4\ud551`**: Slack \uc0ac\uc6a9\uc790\uc758 \uc804\uccb4 \uc774\ub984\uc774 \ud574\ub2f9 Slack \uc0ac\uc6a9\uc790 \ud504\ub85c\ud544\uc5d0 \uc62c\ubc14\ub974\uac8c \ub9e4\ud551\ub418\uc5c8\ub294\uc9c0 \ud655\uc778\ud569\ub2c8\ub2e4.\n5. **`\uc2a4\ucf00\uc904 \uc870\uc815`**: \ud544\uc694\uc5d0 \ub530\ub77c \uc2a4\ucf00\uc904 \ub178\ub4dc\ub97c \uc218\uc815\ud558\uc5ec \ub2e4\ub978 \uc2dc\uac04\uc774\ub098 \ube48\ub3c4\ub85c \uc2e4\ud589\ub418\ub3c4\ub85d \ud569\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "8a91c90e-a9b6-4948-beb4-773e8c9f91f7",
      "name": "Sticky Note15",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1520,
        860
      ],
      "parameters": {
        "color": 7,
        "width": 777.0408639013781,
        "height": 179.2285042683488,
        "content": "## \uc774 \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc0ac\uc6a9\uc790 \uc815\uc758\ud558\ub294 \ubc29\ubc95\n- **`Notion Tasks \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \ubcc0\uacbd`**: \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc870\uc815\ud558\uc5ec \ub2e4\ub978 Notion \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c \uc791\uc5c5\uc744 \uac00\uc838\uc624\ub3c4\ub85d \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 \"Get To Dos from Tasks Database\" \ub178\ub4dc\ub97c \uc218\uc815\ud558\uc138\uc694.\n- **`\ub354 \ub9ce\uc740 \uc0ac\uc6a9\uc790\ub97c \ucd94\uac00`**: \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub294 \ud604\uc7ac \ub450 \uba85\uc758 \uc0ac\uc6a9\uc790\ub97c \uc9c0\uc6d0\ud558\uc9c0\ub9cc, \"Switch for Notion Users Emails\" \ub178\ub4dc\uc5d0 \ucd94\uac00 \ub85c\uc9c1\uc744 \ucd94\uac00\ud558\uc5ec \ub354 \ub9ce\uc740 \uc0ac\uc6a9\uc790\ub97c \uc9c0\uc6d0\ud558\ub3c4\ub85d \ud655\uc7a5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n- **`\uba54\uc2dc\uc9c0 \ud615\uc2dd\uc744 \uc218\uc815`**: Slack \uba54\uc2dc\uc9c0 \ucf58\ud150\uce20\ub97c \ub354 \uc0ac\uc6a9\uc790 \uc815\uc758\ud558\uc5ec \ub354 \ub9ce\uc740 \uc791\uc5c5 \uc138\ubd80 \uc815\ubcf4\ub97c \ud3ec\ud568\ud558\uac70\ub098 \uba54\uc2dc\uc9c0 \ud615\uc2dd\uc744 \ubcc0\uacbd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "9e03e28e-f4ce-4c75-85ab-e7ffe0f1bfd7",
      "name": "Sticky Note10",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1520,
        220
      ],
      "parameters": {
        "color": 7,
        "width": 366.75796434038665,
        "height": 379.6332969008185,
        "content": "## \uc774 \uc6cc\ud06c\ud50c\ub85c\uc6b0\uac00 \ud558\ub294 \uc77c\n1. **`\ub9e4\uc8fc \ud3c9\uc77c \uc624\uc804 9:00\uc5d0 \ud2b8\ub9ac\uac70`** : \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub294 \uc6d4\uc694\uc77c\ubd80\ud130 \uae08\uc694\uc77c\uae4c\uc9c0 \uc624\uc804 9:00\uc5d0 \uc2e4\ud589\ub429\ub2c8\ub2e4.\n2. **`Notion\uc5d0\uc11c \uc791\uc5c5\uc744 \uac00\uc838\uc635\ub2c8\ub2e4`** : Notion \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c \uc791\uc5c5\uc744 \uac80\uc0c9\ud569\ub2c8\ub2e4.\n3. **`\uc644\ub8cc\ub418\uc9c0 \uc54a\uc740 \uc791\uc5c5 \ud544\ud130\ub9c1`** : \"\uc644\ub8cc\"\ub85c \ud45c\uc2dc\ub418\uc9c0 \uc54a\uc740 \uc791\uc5c5\uc744 \ud544\ud130\ub9c1\ud569\ub2c8\ub2e4.\n4. **`Slack \uc0ac\uc6a9\uc790\ub97c \uac00\uc838\uc635\ub2c8\ub2e4`** : \ub9ac\ub9c8\uc778\ub354\uac00 \uc62c\ubc14\ub978 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc804\uc1a1\ub418\ub3c4\ub85d \ubaa8\ub4e0 Slack \uc0ac\uc6a9\uc790\ub97c \uac80\uc0c9\ud569\ub2c8\ub2e4.\n5. **`\uc791\uc5c5\uc744 \uc62c\ubc14\ub978 \uc0ac\uc6a9\uc790\uc640 \ub9e4\uce6d`** : Notion \uc791\uc5c5 \ud560\ub2f9\uc790\ub97c \ud655\uc778\ud558\uace0 \ud574\ub2f9 Slack \uc0ac\uc6a9\uc790\uc640 \ub9e4\uce6d\ud569\ub2c8\ub2e4.\n6. **`Slack \ub9ac\ub9c8\uc778\ub354 \uc804\uc1a1`** : \uac01 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ubbf8\uc644\ub8cc \uc791\uc5c5\uacfc \ub9c8\uac10\uc77c\uc744 \ud3ec\ud568\ud55c Slack \uc9c1\uc811 \uba54\uc2dc\uc9c0\ub97c \ubcf4\ub0c5\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "eb0942b9-d18f-46a2-bea0-23eb07bb1d85",
      "name": "Sticky Note12",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1535,
        58
      ],
      "parameters": {
        "color": 7,
        "width": 809.515353297114,
        "height": 999.58820121335,
        "content": "## Notion \uc791\uc5c5 \uc54c\ub9bc \uc790\ub3d9\ud654 via Slack  \n[Let's Automate It Community](http://onlinethinking.io/community)\ub97c \uc704\ud55c [Optimus Agency](https://optimus01.co.za/) \uc81c\uc791  \n\n\uc774 \uc6cc\ud06c\ud50c\ub85c\ub294 Notion \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c Slack \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc791\uc5c5 \uc54c\ub9bc\uc744 \uc790\ub3d9\uc73c\ub85c \uc804\uc1a1\ud569\ub2c8\ub2e4. \ub9e4\uc8fc \ud3c9\uc77c \uc544\uce68\uc5d0 \uc2e4\ud589\ub418\uc5b4 \uc0ac\uc6a9\uc790\uac00 \ubbf8\uc644\ub8cc \uc791\uc5c5\uc758 \uc801\uc2dc \uc54c\ub9bc\uc744 \ubc1b\uc744 \uc218 \uc788\ub3c4\ub85d \ud558\uba70, \uc774\ub97c \ud1b5\ud574 \uc0ac\uc6a9\uc790\uac00 \uccb4\uacc4\uc801\uc774\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc720\uc9c0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."
      },
      "typeVersion": 1
    },
    {
      "id": "f4334588-60dd-456a-839f-6e5610ce18b8",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -400,
        32.55329198368918
      ],
      "parameters": {
        "color": 4,
        "width": 314.0627775112129,
        "height": 133.34123489274947,
        "content": "# \uc5ec\uae30\uc5d0\uc11c \ud544\ub4dc\ub97c \ud3b8\uc9d1\ud558\uc138\uc694 \ud83d\udc47"
      },
      "typeVersion": 1
    },
    {
      "id": "50bd2206-7b97-454e-9b21-be6e8af7eb7d",
      "name": "Sticky Note3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -671.0639503804273,
        33.191851141281106
      ],
      "parameters": {
        "color": 7,
        "width": 231.9017050322621,
        "height": 132.26101263924207,
        "content": "## \ud83d\udca1 \ud301  \n[Crontab Guru](https://crontab.guru/)\ub294 \uc0ac\uc6a9\uc790\uac00 cron \uc2a4\ucf00\uc904\uc744 \uc0dd\uc131, \ud3b8\uc9d1 \ubc0f \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\ub294 \uac04\ub2e8\ud558\uace0 \uc9c1\uad00\uc801\uc778 \uc6f9 \uae30\ubc18 \ub3c4\uad6c\uc785\ub2c8\ub2e4."
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Set Notion User Emails": {
      "main": [
        [
          {
            "node": "Set Slack User Full Name",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Set Slack User Full Name": {
      "main": [
        [
          {
            "node": "Get To Dos from Tasks Database",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter incomplete tasks only": {
      "main": [
        [
          {
            "node": "Get All Slack Users (Darryn)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get All Slack Users (Darryn)": {
      "main": [
        [
          {
            "node": "Switch for Notion Users Emails",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter Slack User 1 Full Name": {
      "main": [
        [
          {
            "node": "Send a Direct Message to User 1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter Slack User 2 Full Name": {
      "main": [
        [
          {
            "node": "Send a Direct Message to User 2",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get To Dos from Tasks Database": {
      "main": [
        [
          {
            "node": "Filter incomplete tasks only",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Switch for Notion Users Emails": {
      "main": [
        [
          {
            "node": "Filter Slack User 1 Full Name",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Filter Slack User 2 Full Name",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule Mon - Friday @ 09:00am": {
      "main": [
        [
          {
            "node": "Set Notion User Emails",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Workflow 2488. Uses slack, notion. Scheduled trigger; 24 nodes.

Source: https://github.com/n8nKOR/n8n-shared-workflow/blob/62a671327e906c22a40d290b339ff6d2373f8d75/workflows/n8n-workflows-by-Zie619/devops/2488_workflow_2488.json — original creator credit. Request a take-down →

More Slack & Telegram workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Slack & Telegram

This workflow fully automates your team's daily standup process using Slack for communication, Notion for structured data storage, and Redis for real-time session management.

Notion, Slack, Redis
Slack & Telegram

Code Filter. Uses stickyNote, notion, noOp, splitInBatches. Scheduled trigger; 29 nodes.

Notion, Webflow, Slack
Slack & Telegram

This template is for everyone who manages their blog entries in Notion and want to have an easy way to transform them to Webflow.

Notion, Webflow, Slack
Slack & Telegram

🌸 Affirmation Sender + Weekly Gratitude Digest v2

Email Send, Telegram, Notion +3
Slack & Telegram

Filter Slack. Uses slack, notion, stickyNote. Scheduled trigger; 24 nodes.

Slack, Notion