为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 参会者 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": ""
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Zoom Attendee Webhook": {
"main": [
[
{
"node": "Normalize Attendee Data",
"type": "main",
"index": 0
}
]
]
},
"Normalize Attendee Data": {
"main": [
[
{
"node": "Save to Airtable",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
初级 - 客户关系管理, 多模态 AI
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
自动将新Calendly预约添加到Google表格
自动将新Calendly预约添加到Google表格
Code
Webhook
Google Sheets
+1
5 节点David Olusola
客户关系管理
自动保存Zoom录制到Google云端硬盘并在Airtable记录会议
自动保存Zoom录制到Google云端硬盘并在Airtable记录会议
Code
Webhook
Airtable
+3
7 节点David Olusola
文件管理
自动保存Instagram潜在客户到Google表格
自动保存Instagram潜在客户到Google表格
Code
Webhook
Google Sheets
+1
4 节点David Olusola
潜在客户开发
使用Stripe支付触发器和Gmail自动发送PDF发票
使用Stripe支付触发器和Gmail自动发送PDF发票
Code
Gmail
Webhook
+1
5 节点David Olusola
发票处理
使用GPT-4自动总结Zoom录制并发送到Slack和邮件
使用GPT-4自动总结Zoom录制并发送到Slack和邮件
Code
Gmail
Slack
+3
6 节点David Olusola
AI 摘要总结
清理和标准化 CSV 上传以导入 Google Sheets 和 Drive
清理和标准化 CSV 上传以导入 Google Sheets 和 Drive
Code
Webhook
Google Drive
+2
10 节点David Olusola
文档提取
工作流信息
难度等级
初级
节点数量4
分类2
节点类型4
作者
David Olusola
@dae221I 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 查看 →
分享此工作流