Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Onboarding Sequence

Flow prüfen, Nodes verstehen, JSON importieren und Credentials sauber anpassen.

54_Onboarding_Sequence.json

{
    "name": "54_Onboarding_Sequence",
    "nodes": [
        {
            "parameters": {
                "path": "new-employee",
                "options": {}
            },
            "name": "Webhook",
            "type": "n8n-nodes-base.webhook",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "email": "{{$json["body"]["email"]}}",
                "channelIds": [
                    "general"
                ]
            },
            "name": "Slack Invite",
            "type": "n8n-nodes-base.slack",
            "typeVersion": 1,
            "position": [
                450,
                300
            ]
        },
        {
            "parameters": {
                "email": "{{$json["body"]["email"]}}",
                "firstname": "{{$json["body"]["first"]}}",
                "lastname": "{{$json["body"]["last"]}}"
            },
            "name": "Google Workspace User",
            "type": "n8n-nodes-base.googleContacts",
            "typeVersion": 1,
            "position": [
                650,
                300
            ]
        }
    ],
    "connections": {
        "Webhook": {
            "main": [
                [
                    {
                        "node": "Slack Invite",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "Slack Invite": {
            "main": [
                [
                    {
                        "node": "Google Workspace User",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}