Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 14.04.2026

Flow Arbeitsbereich

Jira To ToDo Sync

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

36_Jira_to_ToDo_Sync.json

{
    "name": "36_Jira_to_ToDo_Sync",
    "nodes": [
        {
            "parameters": {
                "httpMethod": "POST",
                "path": "jira-webhook",
                "options": {}
            },
            "name": "Jira Webhook",
            "type": "n8n-nodes-base.webhook",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "authentication": "predefinedCredentialType",
                "nodeCredentialType": "microsoftGraphOAuth2Api",
                "requestMethod": "POST",
                "url": "https://graph.microsoft.com/v1.0/me/todo/lists/YOUR_LIST_ID/tasks",
                "options": {},
                "bodyParametersJson": "={n  "title": "{{ $json.body.issue.key }}: {{ $json.body.issue.fields.summary }}",n  "content": "Link: {{ $json.body.issue.self }}"n}"
            },
            "name": "Create ToDo",
            "type": "n8n-nodes-base.httpRequest",
            "typeVersion": 3,
            "position": [
                450,
                300
            ],
            "credentials": {
                "microsoftGraphOAuth2Api": {
                    "id": "YOUR_MICROSOFT_CREDENTIAL_ID",
                    "name": "Microsoft Graph"
                }
            }
        }
    ],
    "connections": {
        "Jira Webhook": {
            "main": [
                [
                    {
                        "node": "Create ToDo",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}