Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Notion To GCal

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

58_Notion_to_GCal.json

{
    "name": "58_Notion_to_GCal",
    "nodes": [
        {
            "parameters": {
                "pollTimes": {
                    "item": [
                        {
                            "mode": "everyMinute"
                        }
                    ]
                },
                "event": "pagedUpdated",
                "databaseId": "DATABASE_ID"
            },
            "name": "Notion Trigger",
            "type": "n8n-nodes-base.notionTrigger",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "calendarId": "primary",
                "summary": "{{$json["properties"]["Name"]["title"][0]["text"]["content"]}}",
                "start": "{{$json["properties"]["Date"]["date"]["start"]}}",
                "end": "{{$json["properties"]["Date"]["date"]["end"]}}"
            },
            "name": "Google Calendar",
            "type": "n8n-nodes-base.googleCalendar",
            "typeVersion": 1,
            "position": [
                450,
                300
            ]
        }
    ],
    "connections": {
        "Notion Trigger": {
            "main": [
                [
                    {
                        "node": "Google Calendar",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}