8
n8n 한국어amn8n.com

Zoom 참가자를 위한 Airtable CRM 레코드 자동 생성

초급

이것은CRM, Multimodal AI분야의자동화 워크플로우로, 4개의 노드를 포함합니다.주로 Code, Webhook, Airtable 등의 노드를 사용하며. Zoom 참가자 대상 Airtable CRM 레코드 자동 생성

사전 요구사항
  • HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
  • Airtable API Key

사용된 노드 (4)

워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "59e7cffa-7c2c-4553-85d5-2b5dda0d3d35",
      "name": "Zoom 참석자 웹훅",
      "type": "n8n-nodes-base.webhook",
      "position": [
        0,
        192
      ],
      "webhookId": "0f41371c-03e6-496c-abac-c0ecb658f31c",
      "parameters": {
        "path": "zoom-attendee",
        "options": {},
        "httpMethod": "POST"
      },
      "typeVersion": 1
    },
    {
      "id": "65945d65-096c-4ea6-aa1a-973d1472c44d",
      "name": "참석자 데이터 정규화",
      "type": "n8n-nodes-base.code",
      "position": [
        240,
        192
      ],
      "parameters": {
        "jsCode": "// Normalize Zoom attendee payload\nconst e = $input.first().json;\nconst attendee = e.payload.object.participant;\n\nreturn {\n  json: {\n    meeting_id: e.payload.object.id,\n    topic: e.payload.object.topic,\n    join_time: attendee.join_time,\n    leave_time: attendee.leave_time,\n    duration: attendee.duration,\n    name: attendee.user_name,\n    email: attendee.email || attendee.user_email || 'unknown',\n    timestamp: new Date().toISOString()\n  }\n};"
      },
      "typeVersion": 2
    },
    {
      "id": "b63ed47f-ba9f-4b98-abdd-744c245740e1",
      "name": "Airtable에 저장",
      "type": "n8n-nodes-base.airtable",
      "position": [
        480,
        192
      ],
      "parameters": {
        "base": {
          "__rl": true,
          "mode": "id",
          "value": "YOUR_AIRTABLE_BASE_ID"
        },
        "table": {
          "__rl": true,
          "mode": "id",
          "value": "YOUR_AIRTABLE_TABLE_ID"
        },
        "columns": {
          "value": {
            "Tag": "New Lead",
            "Name": "={{ $json.name }}",
            "Email": "={{ $json.email }}",
            "Topic": "={{ $json.topic }}",
            "Duration": "={{ $json.duration }}",
            "Join Time": "={{ $json.join_time }}",
            "Leave Time": "={{ $json.leave_time }}",
            "Meeting ID": "={{ $json.meeting_id }}"
          },
          "mappingMode": "defineBelow"
        },
        "options": {},
        "operation": "upsert"
      },
      "credentials": {
        "airtableTokenApi": {
          "id": "ungHc0pnbSXnUtl8",
          "name": "full access"
        }
      },
      "typeVersion": 2
    },
    {
      "id": "c0975e57-0a4d-4658-9218-8e51988fad34",
      "name": "설정 지침",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -288,
        144
      ],
      "parameters": {
        "content": "\n## 🛠️ Setup Steps\n### 1. Zoom\n- Create a Zoom App with **`meeting.participant_joined`** event.  \n- Paste workflow webhook URL.\n\n### 2. Airtable\n- Create a base called **CRM**.  \n- Table: **Attendees**.  \n- Columns:  \n  - Meeting ID  \n  - Topic  \n  - Name  \n  - Email  \n  - Join Time  \n  - Leave Time  \n  - Duration  \n  - Tag  \n\n### 3. n8n\n- Replace `YOUR_AIRTABLE_BASE_ID` + `YOUR_AIRTABLE_TABLE_ID` in the workflow.  \n- Connect Airtable API key.  \n\n---\n\n## 📊 Example Airtable Row\n| Meeting ID | Topic         | Name     | Email              | Join Time            | Duration | Tag      |\n|------------|--------------|----------|--------------------|----------------------|----------|----------|\n| 999-123-456 | Sales Demo   | Sarah L. | sarah@email.com    | 2025-08-30T10:02:00Z | 45 min   | New Lead |\n"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "59e7cffa-7c2c-4553-85d5-2b5dda0d3d35": {
      "main": [
        [
          {
            "node": "65945d65-096c-4ea6-aa1a-973d1472c44d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "65945d65-096c-4ea6-aa1a-973d1472c44d": {
      "main": [
        [
          {
            "node": "b63ed47f-ba9f-4b98-abdd-744c245740e1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

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

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

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

초급 - 고객관계관리, 멀티모달 AI

유료인가요?

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

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

n8n 초보자를 위한 1-5개 노드의 간단한 워크플로우

저자
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