AutomationFlowsSlack & Telegram › Stripe Success to Slack & Sheets

Stripe Success to Slack & Sheets

Original n8n title: Stripe Webhook to Slack and Google Sheets

Stripe webhook to Slack and Google Sheets. Uses slack, googleSheets. Webhook trigger; 4 nodes.

Webhook trigger★★☆☆☆ complexity4 nodesSlackGoogle Sheets
Slack & Telegram Trigger: Webhook Nodes: 4 Complexity: ★★☆☆☆ Added:

This workflow follows the Google Sheets → 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
{
  "name": "Stripe webhook to Slack and Google Sheets",
  "nodes": [
    {
      "id": "5b4f0a1c-1234-4ec6-9001-aaaaaaaaaaaa",
      "name": "Stripe Webhook",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        240,
        300
      ],
      "parameters": {
        "httpMethod": "POST",
        "path": "stripe-events",
        "responseMode": "onReceived",
        "options": {}
      }
    },
    {
      "id": "5b4f0a1c-1234-4ec6-9001-bbbbbbbbbbbb",
      "name": "Filter Charge Succeeded",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "position": [
        460,
        300
      ],
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": true,
            "leftValue": "",
            "typeValidation": "loose"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "cond-1",
              "leftValue": "={{ $json.body.type }}",
              "rightValue": "charge.succeeded",
              "operator": {
                "type": "string",
                "operation": "equals"
              }
            }
          ]
        }
      }
    },
    {
      "id": "5b4f0a1c-1234-4ec6-9001-cccccccccccc",
      "name": "Slack",
      "type": "n8n-nodes-base.slack",
      "typeVersion": 2.2,
      "position": [
        700,
        200
      ],
      "parameters": {
        "resource": "message",
        "operation": "post",
        "select": "channel",
        "channelId": {
          "__rl": true,
          "mode": "name",
          "value": "billing"
        },
        "text": "=New Stripe charge: ${{ $json.body.data.object.amount / 100 }} from {{ $json.body.data.object.billing_details.email }}",
        "otherOptions": {}
      }
    },
    {
      "id": "5b4f0a1c-1234-4ec6-9001-dddddddddddd",
      "name": "Google Sheets",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4,
      "position": [
        700,
        420
      ],
      "parameters": {
        "resource": "sheet",
        "operation": "appendOrUpdate",
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": ""
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": "Charges"
        },
        "columns": {
          "mappingMode": "defineBelow",
          "value": {
            "id": "={{ $json.body.data.object.id }}",
            "amount": "={{ $json.body.data.object.amount / 100 }}",
            "currency": "={{ $json.body.data.object.currency }}",
            "email": "={{ $json.body.data.object.billing_details.email }}",
            "created_at": "={{ $now }}"
          },
          "matchingColumns": [
            "id"
          ]
        },
        "options": {}
      }
    }
  ],
  "connections": {
    "Stripe Webhook": {
      "main": [
        [
          {
            "node": "Filter Charge Succeeded",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter Charge Succeeded": {
      "main": [
        [
          {
            "node": "Slack",
            "type": "main",
            "index": 0
          },
          {
            "node": "Google Sheets",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1"
  }
}
Pro

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

About this workflow

Stripe webhook to Slack and Google Sheets. Uses slack, googleSheets. Webhook trigger; 4 nodes.

Source: https://github.com/ratamaha-git/n8n-mcp/blob/main/examples/workflow-stripe-to-slack.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

Webhook to Slack and Google Sheets. Uses slack, googleSheets. Webhook trigger; 9 nodes.

Slack, Google Sheets
Slack & Telegram

This workflow is a complete, production-ready solution for recovering abandoned carts in Shopify stores using a multi-channel, multi-touch approach. It automates personalized follow-ups via Email, SMS

HTTP Request, Shopify, SendGrid +5
Slack & Telegram

Turn every sales meeting into a coaching opportunity. This workflow automatically analyzes tldv meeting recordings using OpenAI (GPT-4) to provide instant, actionable feedback to your sales team.

HTTP Request, Slack, Google Sheets
Slack & Telegram

Automated video processing system that monitors S3 for new uploads, generates thumbnails and preview clips, extracts metadata, transcodes to multiple formats, and distributes to CDN with webhook notif

HTTP Request, Google Sheets, Slack
Slack & Telegram

Eliminate manual data entry from your accounts payable process. This workflow transforms raw invoice scans into structured financial records by combining UploadToURL for hosting, AWS Textract for OCR

N8N Nodes Uploadtourl, HTTP Request, Google Sheets +1