Zoom参加者のために自動Airtable CRM記録作成

初級

これはCRM, Multimodal AI分野の自動化ワークフローで、4個のノードを含みます。主にCode, Webhook, Airtableなどのノードを使用。 Zoom参加者に対して自動のにAirtable CRMレコードを作成

前提条件
  • HTTP Webhookエンドポイント(n8nが自動生成)
  • Airtable API Key
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "59e7cffa-7c2c-4553-85d5-2b5dda0d3d35",
      "name": "Zoom参加者 Webhook",
      "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