Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Stripe Failed Payment

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

57_Stripe_Failed_Payment.json

{
    "name": "57_Stripe_Failed_Payment",
    "nodes": [
        {
            "parameters": {
                "events": [
                    "invoice.payment_failed"
                ]
            },
            "name": "Stripe Trigger",
            "type": "n8n-nodes-base.stripeTrigger",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "toEmail": "{{$json["data"]["object"]["customer_email"]}}",
                "subject": "Payment Failed",
                "text": "Please update your payment method."
            },
            "name": "Send Email",
            "type": "n8n-nodes-base.emailSend",
            "typeVersion": 1,
            "position": [
                450,
                300
            ]
        }
    ],
    "connections": {
        "Stripe Trigger": {
            "main": [
                [
                    {
                        "node": "Send Email",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}