Création automatique d'enregistrements Airtable CRM pour les participants Zoom
Ceci est unCRM, Multimodal AIworkflow d'automatisation du domainecontenant 4 nœuds.Utilise principalement des nœuds comme Code, Webhook, Airtable. Créer automatiquement des enregistrements Airtable CRM pour les participants à Zoom
- •Point de terminaison HTTP Webhook (généré automatiquement par n8n)
- •Clé API Airtable
Nœuds utilisés (4)
Catégorie
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "59e7cffa-7c2c-4553-85d5-2b5dda0d3d35",
"name": "Participant 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": "Normaliser les données des participants",
"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": "Enregistrer dans 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": "Instructions de configuration",
"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
}
]
]
}
}
}Comment utiliser ce workflow ?
Copiez le code de configuration JSON ci-dessus, créez un nouveau workflow dans votre instance n8n et sélectionnez "Importer depuis le JSON", collez la configuration et modifiez les paramètres d'authentification selon vos besoins.
Dans quelles scénarios ce workflow est-il adapté ?
Débutant - CRM, IA Multimodale
Est-ce payant ?
Ce workflow est entièrement gratuit et peut être utilisé directement. Veuillez noter que les services tiers utilisés dans le workflow (comme l'API OpenAI) peuvent nécessiter un paiement de votre part.
Workflows recommandés
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
Partager ce workflow