Automatische Erstellung von Airtable CRM-Records für Zoom-Teilnehmer
Dies ist ein CRM, Multimodal AI-Bereich Automatisierungsworkflow mit 4 Nodes. Hauptsächlich werden Code, Webhook, Airtable und andere Nodes verwendet. Automatische Erstellung von Airtable-CRM-Einträgen für Zoom-Teilnehmer
- •HTTP Webhook-Endpunkt (wird von n8n automatisch generiert)
- •Airtable API Key
Verwendete Nodes (4)
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "59e7cffa-7c2c-4553-85d5-2b5dda0d3d35",
"name": "Zoom-Teilnehmer Webhook-Trigger",
"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": "Teilnehmerdaten normalisieren",
"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": "In Airtable speichern",
"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": "Einrichtungsanleitung",
"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": {
"Zoom-Teilnehmer Webhook": {
"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
}
]
]
}
}
}Wie verwende ich diesen Workflow?
Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.
Für welche Szenarien ist dieser Workflow geeignet?
Anfänger - Kundenbeziehungsmanagement, Multimodales KI
Ist es kostenpflichtig?
Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.
Verwandte Workflows
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
Diesen Workflow teilen