8
n8n 한국어amn8n.com

Zoom을 통해 GPT-4, Google Docs 및 Slack으로 AI 회의록 생성

중급

이것은AI Summarization, Multimodal AI분야의자동화 워크플로우로, 6개의 노드를 포함합니다.주로 Code, Slack, OpenAi, Webhook, GoogleDocs 등의 노드를 사용하며. Zoom을 통해 GPT-4, Google Docs 및 Slack을 사용하여 AI 회의 기록 생성

사전 요구사항
  • Slack Bot Token 또는 Webhook URL
  • OpenAI API Key
  • HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
  },
  "nodes": [
    {
      "id": "350fef5e-f003-412d-a061-7dd3165d6055",
      "name": "Zoom Meeting Webhook",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -192,
        256
      ],
      "webhookId": "0ffbeb1c-79eb-4f91-afc7-c1b9878f6e2c",
      "parameters": {
        "path": "zoom-meeting-ended",
        "options": {},
        "httpMethod": "POST"
      },
      "typeVersion": 1
    },
    {
      "id": "ddd1c9c7-8f7c-4c1b-8075-43a27febb40d",
      "name": "데이터 정규화",
      "type": "n8n-nodes-base.code",
      "position": [
        48,
        256
      ],
      "parameters": {
        "jsCode": "// Normalize Zoom payload\nconst e = $input.first().json;\n\nreturn {\n  json: {\n    meeting_id: e.payload.object.id,\n    topic: e.payload.object.topic,\n    host: e.payload.object.host_email,\n    start_time: e.payload.object.start_time,\n    end_time: e.payload.object.end_time,\n    duration: e.payload.object.duration,\n    participants: e.payload.object.participant_count || 0,\n    transcript: e.payload.object.transcript || '', // if transcript available\n    timestamp: new Date().toISOString()\n  }\n};"
      },
      "typeVersion": 2
    },
    {
      "id": "00538f67-0cad-4e9c-ba72-d4744470c772",
      "name": "AI 회의록 생성",
      "type": "n8n-nodes-base.openAi",
      "position": [
        256,
        256
      ],
      "parameters": {
        "resource": "chat",
        "operation": "create",
        "requestOptions": {}
      },
      "typeVersion": 1
    },
    {
      "id": "de229a4a-d353-4a0b-b6c4-010ca22e3e50",
      "name": "Google Docs에 저장",
      "type": "n8n-nodes-base.googleDocs",
      "position": [
        496,
        256
      ],
      "parameters": {
        "title": "Meeting Notes - {{ $json.topic }} - {{ $json.timestamp }}"
      },
      "typeVersion": 2
    },
    {
      "id": "07bdd64e-bdb8-470e-a3e6-604f51c2ac66",
      "name": "Slack에 게시",
      "type": "n8n-nodes-base.slack",
      "position": [
        720,
        256
      ],
      "parameters": {
        "text": "📝 *New Meeting Notes Available*\\n*Topic:* {{ $('Normalize Data').item.json.topic }}\\n*Host:* {{ $('Normalize Data').item.json.host }}\\n*Duration:* {{ $('Normalize Data').item.json.duration }} mins\\n\\n👉 Read full notes here: {{ $('Save to Google Docs').item.json.webViewLink }}",
        "channel": "#team-meetings",
        "attachments": [],
        "otherOptions": {},
        "authentication": "oAuth2"
      },
      "typeVersion": 1
    },
    {
      "id": "a21376f0-b3a7-4c50-ad69-81793a723242",
      "name": "설정 안내",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -192,
        -64
      ],
      "parameters": {
        "width": 432,
        "height": 384,
        "content": "## 🛠️ Setup Steps\n### 1. Zoom App\n- Go to Zoom Developer Console → create App.  \n- Enable event **`meeting.ended`**.  \n- Paste workflow webhook URL.\n\n### 2. Google Docs\n- Connect Google OAuth in n8n.  \n- Docs auto-saved in your Google Drive.\n\n### 3. Slack\n- Connect Slack OAuth.  \n- Replace channel `#team-meetings`.\n\n### 4. OpenAI\n- Add your OpenAI API key.  \n- Uses **GPT-4** for accurate summaries.\n\n---"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "ddd1c9c7-8f7c-4c1b-8075-43a27febb40d": {
      "main": [
        [
          {
            "node": "00538f67-0cad-4e9c-ba72-d4744470c772",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "00538f67-0cad-4e9c-ba72-d4744470c772": {
      "main": [
        [
          {
            "node": "de229a4a-d353-4a0b-b6c4-010ca22e3e50",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "de229a4a-d353-4a0b-b6c4-010ca22e3e50": {
      "main": [
        [
          {
            "node": "07bdd64e-bdb8-470e-a3e6-604f51c2ac66",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "350fef5e-f003-412d-a061-7dd3165d6055": {
      "main": [
        [
          {
            "node": "ddd1c9c7-8f7c-4c1b-8075-43a27febb40d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - AI 요약, 멀티모달 AI

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수6
카테고리2
노드 유형6
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
David Olusola

David Olusola

@dae221

I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34