AutomationFlowsSlack & Telegram › Automate Expense Reports via Webhook

Automate Expense Reports via Webhook

Original n8n title: [금융] 경비 보고서 자동화 - Webhook

[금융] 경비 보고서 자동화 - Webhook. Uses googleSheets, slack. Webhook trigger; 6 nodes.

Webhook trigger★★★★☆ complexity6 nodesGoogle SheetsSlack
Slack & Telegram Trigger: Webhook Nodes: 6 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": "[\uae08\uc735] \uacbd\ube44 \ubcf4\uace0\uc11c \uc790\ub3d9\ud654 - Webhook",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "expense-report",
        "responseMode": "lastNode",
        "options": {}
      },
      "id": "webhook-node",
      "name": "\uacbd\ube44 \uc811\uc218",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "// \ud544\uc218 \ud544\ub4dc \uac80\uc99d\nconst data = $input.item.json.body || $input.item.json;\n\nconst date = data.date || new Date().toISOString().slice(0, 10);\nconst item = data.item || '';\nconst amount = Number(data.amount) || 0;\nconst user = data.user || '';\nconst note = data.note || '';\n\n// \ud544\uc218 \ud544\ub4dc \ud655\uc778\nif (!item || !amount || !user) {\n  throw new Error('\ud544\uc218 \ud544\ub4dc \ub204\ub77d: item(\ud56d\ubaa9), amount(\uae08\uc561), user(\uc0ac\uc6a9\uc790)\ub294 \ud544\uc218\uc785\ub2c8\ub2e4.');\n}\n\nreturn {\n  json: {\n    date: date,\n    item: item,\n    amount: amount,\n    user: user,\n    note: note\n  }\n};"
      },
      "id": "code-validate-node",
      "name": "\ub370\uc774\ud130 \uac80\uc99d",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        450,
        300
      ]
    },
    {
      "parameters": {
        "operation": "appendOrUpdate",
        "documentId": {
          "__rl": true,
          "value": "placeholder-spreadsheet-id",
          "mode": "id",
          "cachedResultName": "\uacbd\ube44 \ubcf4\uace0\uc11c"
        },
        "sheetName": {
          "__rl": true,
          "value": "gid=0",
          "mode": "id",
          "cachedResultName": "Sheet1"
        },
        "columns": {
          "mappingMode": "defineBelow",
          "value": {
            "\ub0a0\uc9dc": "={{ $json.date }}",
            "\ud56d\ubaa9": "={{ $json.item }}",
            "\uae08\uc561": "={{ $json.amount }}",
            "\uc0ac\uc6a9\uc790": "={{ $json.user }}",
            "\ube44\uace0": "={{ $json.note }}"
          },
          "matchingColumns": [],
          "schema": []
        },
        "options": {
          "cellFormat": "USER_ENTERED",
          "useAppend": true
        }
      },
      "id": "sheets-node",
      "name": "\uacbd\ube44 \uae30\ub85d",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4.4,
      "position": [
        650,
        300
      ],
      "credentials": {
        "googleSheetsOAuth2Api": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "authentication": "oAuth2",
        "select": "channel",
        "channelId": {
          "__rl": true,
          "value": "C12345EXPENSE",
          "mode": "id"
        },
        "text": "=:receipt: \uacbd\ube44 \uc811\uc218 \uc644\ub8cc\n\n*\uc0ac\uc6a9\uc790:* {{ $json.user }}\n*\ud56d\ubaa9:* {{ $json.item }}\n*\uae08\uc561:* {{ Number($json.amount).toLocaleString() }}\uc6d0\n*\ub0a0\uc9dc:* {{ $json.date }}\n*\ube44\uace0:* {{ $json.note || '\uc5c6\uc74c' }}",
        "otherOptions": {}
      },
      "id": "slack-node",
      "name": "\uc811\uc218 \ud655\uc778 \uc54c\ub9bc",
      "type": "n8n-nodes-base.slack",
      "typeVersion": 2.2,
      "position": [
        850,
        300
      ],
      "credentials": {
        "slackOAuth2Api": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "jsCode": "// Webhook \uc751\ub2f5 JSON \uc0dd\uc131\nconst data = $('\ub370\uc774\ud130 \uac80\uc99d').item.json;\n\nreturn {\n  json: {\n    success: true,\n    message: `\uacbd\ube44\uac00 \uc815\uc0c1\uc801\uc73c\ub85c \uc811\uc218\ub418\uc5c8\uc2b5\ub2c8\ub2e4.`,\n    data: {\n      date: data.date,\n      item: data.item,\n      amount: data.amount,\n      user: data.user\n    },\n    timestamp: new Date().toISOString()\n  }\n};"
      },
      "id": "code-response-node",
      "name": "\uc751\ub2f5 \uc0dd\uc131",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        1050,
        300
      ]
    },
    {
      "parameters": {},
      "id": "noop-node",
      "name": "\uc644\ub8cc",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "position": [
        1250,
        300
      ]
    }
  ],
  "connections": {
    "\uacbd\ube44 \uc811\uc218": {
      "main": [
        [
          {
            "node": "\ub370\uc774\ud130 \uac80\uc99d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "\ub370\uc774\ud130 \uac80\uc99d": {
      "main": [
        [
          {
            "node": "\uacbd\ube44 \uae30\ub85d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "\uacbd\ube44 \uae30\ub85d": {
      "main": [
        [
          {
            "node": "\uc811\uc218 \ud655\uc778 \uc54c\ub9bc",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "\uc811\uc218 \ud655\uc778 \uc54c\ub9bc": {
      "main": [
        [
          {
            "node": "\uc751\ub2f5 \uc0dd\uc131",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "\uc751\ub2f5 \uc0dd\uc131": {
      "main": [
        [
          {
            "node": "\uc644\ub8cc",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1",
    "saveManualExecutions": true,
    "callerPolicy": "workflowsFromSameOwner",
    "errorWorkflow": "",
    "timezone": "Asia/Seoul",
    "saveExecutionProgress": true,
    "saveDataErrorExecution": "all",
    "saveDataSuccessExecution": "all",
    "executionTimeout": 3600
  },
  "staticData": null,
  "tags": [
    {
      "createdAt": "2026-03-09T00:00:00.000Z",
      "updatedAt": "2026-03-09T00:00:00.000Z",
      "id": "finance",
      "name": "\uae08\uc735"
    },
    {
      "createdAt": "2026-03-09T00:00:00.000Z",
      "updatedAt": "2026-03-09T00:00:00.000Z",
      "id": "expense-mgmt",
      "name": "\uacbd\ube44 \uad00\ub9ac"
    }
  ],
  "triggerCount": 1,
  "updatedAt": "2026-03-09T00:00:00.000Z",
  "versionId": "1"
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

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

About this workflow

[금융] 경비 보고서 자동화 - Webhook. Uses googleSheets, slack. Webhook trigger; 6 nodes.

Source: https://github.com/cskwork/n8n-maker/blob/34120aa8922a96a6a05e9ca710cc0ce1e6c3dfe6/public/workflows/expense-report-auto.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

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
Slack & Telegram

Connect Fireflies and WayinVideo to this workflow once and every recorded sales call automatically generates a set of training clips delivered to your Slack channel. The moment Fireflies finishes tran

HTTP Request, Google Sheets, Slack