Génération de cold emails à partir des profils LinkedIn avec Dumpling AI et GPT-4

Intermédiaire

Ceci est unContent Creation, Multimodal AIworkflow d'automatisation du domainecontenant 7 nœuds.Utilise principalement des nœuds comme Gmail, Airtable, Dropcontact, FormTrigger, HttpRequest. LinkedIn vers Gmail : génération de e-mails froids via Dumpling AI, GPT-4 et Dropcontact

Prérequis
  • Compte Google et informations d'identification Gmail API
  • Clé API Airtable
  • Peut nécessiter les informations d'identification d'authentification de l'API cible
  • Clé API OpenAI
Aperçu du workflow
Visualisation des connexions entre les nœuds, avec support du zoom et du déplacement
Exporter le workflow
Copiez la configuration JSON suivante dans n8n pour importer et utiliser ce workflow
{
  "id": "qDoihlcvYfyAieir",
  "meta": {
    "instanceId": "a1ae5c8dc6c65e674f9c3947d083abcc749ef2546dff9f4ff01de4d6a36ebfe6",
    "templateCredsSetupCompleted": true
  },
  "name": "Generate Cold Email from LinkedIn Profile with Dumpling AI and GPT-4",
  "tags": [],
  "nodes": [
    {
      "id": "7de66b30-526f-4eb1-ac77-5cae046911ae",
      "name": "Déclenchement sur soumission de profil LinkedIn",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        -480,
        32
      ],
      "webhookId": "86c63411-8bcd-417c-9c2b-065d165bd0b3",
      "parameters": {
        "options": {},
        "formTitle": "Linkedin profile",
        "formFields": {
          "values": [
            {
              "fieldLabel": "profile URL"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "debcc3e2-04b5-4525-a45b-abea748d86bb",
      "name": "Extraire les informations de l'entreprise (Dumpling AI)",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -272,
        32
      ],
      "parameters": {
        "url": "https://app.dumplingai.com/api/v1/linkedin/company",
        "method": "POST",
        "options": {},
        "jsonBody": "={\n  \"url\":\"{{ $json['profile URL'] }}\"\n} ",
        "sendBody": true,
        "specifyBody": "json",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth"
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "RLFzAcGRepr5eXZB",
          "name": "Dumpling AI-n8n"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "3679ae6f-f0f9-4210-9d54-599693845002",
      "name": "Enrichir le contact (Dropcontact)",
      "type": "n8n-nodes-base.dropcontact",
      "position": [
        -64,
        32
      ],
      "parameters": {
        "options": {
          "waitTime": 60
        },
        "additionalFields": {
          "country": "={{ $json.location.country }}",
          "website": "={{ $json.website }}",
          "linkedin": "={{ $json.url }}",
          "full_name": "={{ $json.name }}"
        }
      },
      "credentials": {
        "dropcontactApi": {
          "id": "agj3ZD0hSVoXEMvl",
          "name": "Dropcontact account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "12334649-93b9-488a-ac12-48054e5821e0",
      "name": "Générer l'email froid (GPT-4)",
      "type": "@n8n/n8n-nodes-langchain.openAi",
      "position": [
        144,
        32
      ],
      "parameters": {
        "modelId": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1",
          "cachedResultName": "GPT-4.1"
        },
        "options": {},
        "messages": {
          "values": [
            {
              "role": "system",
              "content": "=You are an expert cold email copywriter for a digital marketing agency called BrightPath Digital.\nYour task is to take the lead details provided and generate two things:\n1. A personalized subject line that feels relevant to them and sparks curiosity, no longer than eight words.\n2. A short cold email of four to six sentences in HTML that starts with a natural ice breaker about them or their company, introduces BrightPath Digital’s services, highlights how we help businesses grow through increased visibility and qualified leads and better campaign performance, and ends with a light call to action. The email must always end with the signature block shown below.\n\nGuidelines:\nUse the lead’s name in the greeting.\nConnect the ice breaker directly to the company description so it feels tailored.\nKeep the tone professional, warm, and human.\nAvoid buzzwords and robotic phrases.\nWrite in clear simple English.\nKeep the total email under one hundred and twenty words.\nAlways include this exact signature block at the end of the HTML:\n<p>Best regards,<br>BrightPath Digital</p>\n\n\nOutput must be strict JSON with no extra text. Return exactly this structure:\n{\n  \"subject\": \"Personalized subject line here\",\n  \"email\": \"<p>Greeting that uses the lead’s name.</p><p>Ice breaker tied to the company description.</p><p>Brief introduction of BrightPath Digital and how we help.</p><p>Simple call to action asking for a quick chat.</p><p>Best regards,<br>BrightPath Digital</p>\"\n}\n"
            },
            {
              "content": "=Input fields you will receive:  \n- Name: {{ $json.full_name }}\n- Company Description: {{ $('Extract Company Info (Dumpling AI)').item.json.description }}"
            }
          ]
        },
        "jsonOutput": true
      },
      "credentials": {
        "openAiApi": {
          "id": "dd8NvMC6rvx8RITo",
          "name": "OpenAi account 2"
        }
      },
      "typeVersion": 1.8
    },
    {
      "id": "45f9c532-3991-41e7-bf8a-6613e8399580",
      "name": "Envoyer l'email froid via Gmail",
      "type": "n8n-nodes-base.gmail",
      "position": [
        496,
        32
      ],
      "webhookId": "0c7ad6bd-4d14-4a36-bfc6-32dec4a64ce4",
      "parameters": {
        "sendTo": "=example@gmail.com",
        "message": "={{ $json.message.content.email }}",
        "options": {
          "appendAttribution": false
        },
        "subject": "={{ $json.message.content.subject }}"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "j70r3RTMED1pgN3R",
          "name": "Gmail account 2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "db20873e-d1b8-4823-b33c-1160aaa9442e",
      "name": "Journaliser le prospect dans Airtable",
      "type": "n8n-nodes-base.airtable",
      "position": [
        704,
        32
      ],
      "parameters": {
        "base": {
          "__rl": true,
          "mode": "list",
          "value": "",
          "cachedResultUrl": "https://airtable.com/apppDyB7Z8ON9zzXu",
          "cachedResultName": "LinkedIn leads "
        },
        "table": {
          "__rl": true,
          "mode": "list",
          "value": "",
          "cachedResultUrl": "https://airtable.com/apppDyB7Z8ON9zzXu/tblhKKHU9zXnpWjs1",
          "cachedResultName": "leads"
        },
        "columns": {
          "value": {
            "Name": "={{ $('Extract Company Info (Dumpling AI)').item.json.name }}",
            "People": "={{ $('Extract Company Info (Dumpling AI)').item.json.employeeCount }}",
            "website": "={{ $('Extract Company Info (Dumpling AI)').item.json.website }}",
            "LinkedIn Company URL": "={{ $('Extract Company Info (Dumpling AI)').item.json.url }}"
          },
          "schema": [
            {
              "id": "Name",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "Name",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "LinkedIn Company URL",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "LinkedIn Company URL",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "People",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "People",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "website",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "website",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Company Analysis",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "Company Analysis",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "create"
      },
      "credentials": {
        "airtableTokenApi": {
          "id": "hX3wPN3fUWW9Ctx9",
          "name": "Airtable Personal Access Token account 2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "24303ff7-9cd6-496b-865c-f59cde103ce9",
      "name": "Note adhésive",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -496,
        -304
      ],
      "parameters": {
        "width": 624,
        "height": 464,
        "content": "## ✉️ Generate and Send Cold Email from LinkedIn Profile with AI\n\nThis workflow turns a submitted LinkedIn profile into a cold email in seconds.\n\n1. Trigger: LinkedIn URL submitted via web form  \n2. Dumpling AI fetches company data  \n3. Dropcontact enriches with name/email  \n4. GPT-4 writes a cold email and subject line  \n5. Gmail sends the email  \n6. Airtable logs the lead\n\n✅ Required: Dumpling AI, Dropcontact, OpenAI, Gmail, Airtable credentials  \n✅ Outputs are structured and ready-to-use\n"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {
    "Send Cold Email via Gmail": [
      {
        "json": {
          "id": "19982af83cab2ad2",
          "labelIds": [
            "UNREAD",
            "SENT",
            "INBOX"
          ],
          "threadId": "19982af83cab2ad2"
        }
      }
    ],
    "Enrich Contact (Dropcontact)": [
      {
        "json": {
          "email": [
            {
              "email": "schneider.electric@se.com",
              "qualification": "nominative@pro"
            }
          ],
          "phone": "+33 4 76 57 60 60",
          "company": "SE",
          "country": "France",
          "website": "www.se.com",
          "civility": "Mr",
          "full_name": "Schneider Electric",
          "last_name": "Electric",
          "first_name": "Schneider"
        }
      }
    ],
    "Extract Company Info (Dumpling AI)": [
      {
        "json": {
          "url": "https://fr.linkedin.com/company/schneider-electric",
          "logo": "https://media.licdn.com/dms/image/v2/C4E0BAQGNfeTPCu6Z-w/company-logo_200_200/company-logo_200_200/0/1631312208065?e=2147483647&v=beta&t=vrp7rgVnvX22xjmuGe3mWGrSlUu4Xn0F13vbZLaCHQE",
          "name": "Schneider Electric",
          "size": "10,001+ employees",
          "type": "Public Company",
          "posts": [
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_impactcompany-activity-7373626857625317376-LWdN",
              "text": "Earlier this year, we had the honor to be named Most Sustainable Company by Corporate Knights for the second time, a first for any company. Adding to this, a couple of months ago we were also recognized again by TIME Magazine & Statista, for the second time.\n\nWe’ve asked our EVP France Operations, Laurent Bataille : “What does it take to become the world’s most sustainable company?” For him, sustainability is a long-term adventure.\n\nFor more than 20 years, sustainability has guided our choices and shaped our strategy. “I think that behind this success lies a cultural aspect,” says Laurent. At Schneider Electric we have a real understanding of the effect we have on our ecosystems and stakeholders. “We are both a solution provider and diligent in-house practitioner,” he adds.\n\nDigitalization, AI, climate change, energy transition, the evolution of global wealth and balance… these are our next frontiers. So many challenges, so many opportunities to continue to grow, innovate, and make an impact.\n\nJoin us on this journey. Learn more about becoming an #ImpactCompany: http://spr.ly/6009AzPqx",
              "datePublished": "2025-09-16T08:00:38.198Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_sustainablegrowth-cmoblueprint-marketingwithpurpose-activity-7376918438583296000-hKXe",
              "text": "In our journey to drive growth with purpose, we’re rethinking how technology can serve both business and the planet. 🌍\n\nThe United Nations Global Compact’s CMO Blueprint for Sustainable Growth highlights the pivotal role CMOs play in aligning strategy with the SDGs to deliver meaningful impact. At Schneider Electric, we believe marketing plays a big part in driving adoption of sustainable innovation.\n\nTake our AirSeT medium-voltage switchgear: it replaces SF₆ – a potent greenhouse gas – with pure air, delivering the same high performance with significantly lower environmental impact. Each installation avoids 75,000 kg of CO₂e emissions and offers up to 30% savings in maintenance costs.\n\nTo accelerate adoption, marketing must:\n✅ Make sustainability core to growth for business and society\n✅ Build purposeful brands on real action to earn lasting trust\n✅ Drive innovation that meets regulations and advances sustainability\n✅ Communicate clearly and inclusively, backed by data, to inspire change\n✅ Partner strategically to amplify impact across industries\n\nDive into our story and other sustainable marketing strategies: http://spr.ly/6045AZbVH\n\n#SustainableGrowth #CMOBlueprint #MarketingWithPurpose #ImpactCompany",
              "datePublished": "2025-09-25T10:00:12.246Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_prefab-modular-ecostruxure-pod-data-center-activity-7376918438390300672-Q2A6",
              "text": "Accelerate AI data center deployment with our Prefabricated Modular EcoStruxure™ Pod Data Center.\n\nEngineered for speed, scalability, and flexibility, it supports up to 42 high-density racks per pod with hybrid liquid-air cooling. Preconfigured and factory-tested, it ensures predictable performance, reduced CapEx, and rapid time-to-market—ideal for hyperscale, cloud, and AI-driven environments.\n\nExplore our 3D Sketchfab model to learn more: http://spr.ly/6049AKqSH\n\n#DataCentersoftheFuture #EcoStruxurePod",
              "datePublished": "2025-09-25T10:00:12.201Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_digitaltransformation-activity-7376918437744259072-cn75",
              "text": "Unlock industrial success with quality-first strategies.\n\nDigital transformation and quality management can reveal hidden costs, boost efficiency, and build resilience.\n\nExplore Schneider Electric’s eGuide for smarter quality management http://spr.ly/6041Aw5iF #DigitalTransformation",
              "datePublished": "2025-09-25T10:00:12.039Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_impactstartswithus-activity-7376904319666774016-2-ER",
              "text": "What makes India a magnet for global leadership and innovation?\n\nIn this video, three of our leaders share their perspectives on India as a growth hub—capturing the spirit of transformation, opportunity, and purpose that defines the India experience.\n\nFrom dynamic markets to a thriving talent ecosystem, discover why India is the place to build, lead, and grow.\n\nReady to be part of the India Talent Quest? Register now: http://spr.ly/6046f5niK #ImpactStartsWithUs",
              "datePublished": "2025-09-25T09:04:06.036Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_energy-efficiency-path-to-ai-inference-activity-7376835393058508801-DnWK",
              "text": "AI training gets the headlines, but inference is where the real value lies.\n\nOnce models are trained, running them efficiently on new data is what drives automation, insights, and business impact.\n\nThe challenge? Many inference workloads still run on oversized training clusters—like using 800 GPUs when 8 would do.\n\nAs AI adoption grows, the winners will be those who optimize inference by cutting costs, right-sizing infrastructure, and scaling sustainably: http://spr.ly/6001ApwJz\n\n#EnergyEfficiency",
              "datePublished": "2025-09-25T04:30:12.648Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_we-are-proud-to-announce-that-schneider-electric-activity-7376825324304666624-pAT1",
              "text": "We are proud to announce that Schneider Electric has been recognized on the Fortune 2025 Change the World List 🎉\nThis honor celebrates our commitment to protecting the environment and creating a positive social impact through our innovative and sustainable practices.\nWe remain dedicated to making meaningful impact for people and the planet. Explore the full list here: http://spr.ly/6049Aw03W",
              "datePublished": "2025-09-25T03:50:12.066Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_innovation-sustainability-ai-activity-7376712128717742080-tu_-",
              "text": "Innovation is at the heart of sustainability. Farrukh Shad, Head of Sustainability Business, APAC & MEA, explains at Bloomberg’s Sustainable Business Summit Singapore how we leverages AI and data to turn sustainability from a reporting exercise into a strategic advantage.\n\nWatch here: http://spr.ly/6003AwN0F\n\n#Innovation #Sustainability #AI",
              "datePublished": "2025-09-24T20:20:24.137Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_lifeison-activity-7376586248867463168-kX03",
              "text": "Electric mobility is accelerating and so are we.\n\nWe’ve just launched a dedicated page showcasing our fast charging solutions for electric vehicles, designed to meet the needs of residential, commercial, and fleet environments.\n\nWhat you’ll find:\n- Reliable AC and DC charging technologies\n- Smart energy management for cost and performance optimization\n- Seamless integration with energy storage and management systems\n- Full compliance with international safety standards\n\nThis new resource is built for mobility players looking to scale their energy transition with robust and future-ready solutions.\n\n➡️ Explore the page here: http://spr.ly/6043AkMaT\n\n#LifeIsOn",
              "datePublished": "2025-09-24T12:00:12.048Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_innovation-summit-2025-activity-7376586247709831170-ma78",
              "text": "Copenhagen inspires bold thinking and breakthrough ideas. Connect with the minds driving meaningful transformation at Innovation Summit, October 22–23. http://spr.ly/6043Aw59l\n\n#InnovationSummit2025",
              "datePublished": "2025-09-24T12:00:11.760Z"
            }
          ],
          "handle": "schneider-electric",
          "founded": null,
          "funding": {
            "investors": [],
            "lastRound": {
              "date": "2025-09-26T00:00:00.000Z",
              "type": "Post IPO debt",
              "amount": "US$ 4.1B"
            },
            "numberOfRounds": 3
          },
          "success": true,
          "website": "https://www.se.com/",
          "industry": "Automation Machinery Manufacturing",
          "location": {
            "city": "Rueil Malmaison",
            "state": "Paris",
            "country": "FR"
          },
          "employees": [
            {
              "link": "https://www.linkedin.com/in/darin-clark",
              "name": "Darin Clark",
              "image": "https://media.licdn.com/dms/image/v2/D5603AQHhAV8cJTwndA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1729356565688?e=2147483647&v=beta&t=P9oVlHEMIbzd8gJja-E7zfF_oyHA3L1eOVmBDiGs-a0",
              "title": ""
            },
            {
              "link": "https://www.linkedin.com/in/schneidercm",
              "name": "Claude Mukaisu",
              "image": "https://media.licdn.com/dms/image/v2/D5603AQG1nx_IL67UYw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1725320765533?e=2147483647&v=beta&t=kZxxYwLiDlASsKPhX7NsSF32Cr3qsclfGMbZ7Rn0se0",
              "title": "Principal Project Application Engineer at Schneider Electric"
            },
            {
              "link": "https://ca.linkedin.com/in/stevenjavor",
              "name": "Steven Javor",
              "image": "https://media.licdn.com/dms/image/v2/C4E03AQEp0Vb-8Ml7Kw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1516162018957?e=2147483647&v=beta&t=YOxkYHWjRLCGw8hOJE9xj6wlF6RcQVL1gCHeVtjddkE",
              "title": "Accomplished eCommerce & eBusiness Executive Leader | Digital Transformation | Educator  | Speaker | Panelist"
            },
            {
              "link": "https://ae.linkedin.com/in/tarunjeetsarao",
              "name": "Tarunjeet Sarao",
              "image": "https://media.licdn.com/dms/image/v2/C5603AQGm8lod8riH8A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1625204440213?e=2147483647&v=beta&t=oEoHdZFoQKCfnDmbBnrluWTHqTfIkWykNf7eZAh65Po",
              "title": "Transforming the Data Center Industry | SVP, Leading Global Teams Across Innovation, Product, and Growth | Championing Scalable, Sustainable, AI…"
            }
          ],
          "followers": 5098559,
          "description": "Schneider’s purpose is to create Impact by empowering all to make the most of our energy and resources, bridging progress and sustainability. At Schneider, we call this Life Is On.\n\nOur mission is to be the trusted partner in Sustainability and Efficiency.\n\nWe are a global industrial technology leader bringing world-leading expertise in electrification, automation and digitization to smart industries, resilient infrastructure, future-proof data centers, intelligent buildings, and intuitive homes. Anchored by our deep domain expertise, we provide integrated end-to-end lifecycle AI enabled Industrial IoT solutions with connected products, automation, software and services, delivering digital twins to enable profitable growth for our customers.\n\nWe are a people company with an ecosystem of 168,000 colleagues and more than a million partners operating in over 100 countries to ensure proximity to our customers and stakeholders. We embrace diversity and inclusion in everything we do, guided by our meaningful purpose of a sustainable future for all.\n\nwww.se.com\n\nFollow us on:\nhttps://www.facebook.com/SchneiderElectric\nhttps://www.x.com/SchneiderElec\nhttps://www.x.com/SE_Careers\nhttps://www.instagram.com/schneiderelectric\nhttps://www.youtube.com/schneiderelectric\nhttps://www.tiktok.com/@schneiderelectric_global",
          "specialties": [
            "Industrial Automation",
            "Energy Management",
            "Digital Automation",
            "Sustainability",
            "Innovation",
            "Digitalization",
            "Artificial Intelligence",
            "Engineering",
            "Cybersecurity",
            "Renewables",
            "Digital Supply Chain",
            "Manufacturing",
            "Electrification",
            "Building Management Systems",
            "Power Systems and Services",
            "Microgrids",
            "Industrial Software Design and Optimization",
            "Prosumer",
            "Solar and Energy Storage",
            "Services",
            "and Software-centric Automation & Solutions"
          ],
          "headquarters": "Rueil Malmaison, Paris",
          "similarPages": [
            {
              "link": "https://de.linkedin.com/company/siemens",
              "name": "Siemens",
              "image": "https://media.licdn.com/dms/image/v2/D4D0BAQFK_4wGnzwPTQ/company-logo_100_100/company-logo_100_100/0/1719931174735/siemens_logo?e=2147483647&v=beta&t=iNZVOYYuYOnkz09IBCFrK9Ik8uTqP6ZDnhCEJjPouV4"
            },
            {
              "link": "https://ch.linkedin.com/company/abb",
              "name": "ABB",
              "image": "https://media.licdn.com/dms/image/v2/C4D0BAQHPGAMgqJMBZQ/company-logo_100_100/company-logo_100_100/0/1630579606103/abb_logo?e=2147483647&v=beta&t=UOAvwz5s6liS099z91BNomM-lOY3CC7ClOAVlUTpdR8"
            },
            {
              "link": "https://www.linkedin.com/company/honeywell",
              "name": "Honeywell",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQFvcIh3UnA5zw/company-logo_100_100/company-logo_100_100/0/1630621634841/honeywell_logo?e=2147483647&v=beta&t=el5CyUz5n_qzua6OscZ-xQrU1xJg3xcD4x0QQIEAGaU"
            },
            {
              "link": "https://www.linkedin.com/company/siemens-energy",
              "name": "Siemens Energy",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQHJrmcq29R6nA/company-logo_100_100/B4EZfEvuGOGwAQ-/0/1751352533824/siemens_energy_logo?e=2147483647&v=beta&t=AZ1foBZGusbDa1QrHqsc4J3zlTv3NdMDaqMUalxDhzQ"
            },
            {
              "link": "https://ie.linkedin.com/company/eaton",
              "name": "Eaton",
              "image": "https://media.licdn.com/dms/image/v2/C4E0BAQFlHTyFXVYarg/company-logo_100_100/company-logo_100_100/0/1630597759539/eaton_logo?e=2147483647&v=beta&t=mf1Y9QMDbkpihH-1MCZClCRWIornoz2jPRUrNJfjMyk"
            },
            {
              "link": "https://ch.linkedin.com/company/hitachienergy",
              "name": "Hitachi Energy",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQFORxmRRI944Q/company-logo_100_100/B4EZZZAW8eHUAY-/0/1745249989009/hitachienergy_logo?e=2147483647&v=beta&t=VsqridtWJ4m6Ag1RFvEKfYAhJ3YgA7IGLKySiMSreN0"
            },
            {
              "link": "https://www.linkedin.com/company/ge",
              "name": "GE",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQHNSdSY_UJ_rg/company-logo_100_100/company-logo_100_100/0/1688184041602/ge_logo?e=2147483647&v=beta&t=e6VJzilpnDX14Fp0r9VT0csEt1CzTb9xuS6tbDnKl-w"
            },
            {
              "link": "https://www.linkedin.com/company/deloitte",
              "name": "Deloitte",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQGNtpblgQpJoQ/company-logo_100_100/company-logo_100_100/0/1662120928214/deloitte_logo?e=2147483647&v=beta&t=OSF8M5LreT0Sf2F-JcNk6XMT0ArCuPfDmRR-knCC4HY"
            },
            {
              "link": "https://www.linkedin.com/company/emerson",
              "name": "Emerson",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQGR6FSAnbBWcQ/company-logo_100_100/company-logo_100_100/0/1719847292094/emerson_logo?e=2147483647&v=beta&t=cQc4Xf708t7quqrf1BkItwvh_lWHbqa1ewpEYk_vZDw"
            },
            {
              "link": "https://www.linkedin.com/company/amazon",
              "name": "Amazon",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQHTvZwCx4p2Qg/company-logo_100_100/company-logo_100_100/0/1630640869849/amazon_logo?e=2147483647&v=beta&t=QsC16wgE3EBriPFDlAgtToh2xndFwQWKmR2WcyMG1nk"
            }
          ],
          "employeeCount": 86251,
          "credits_remaining": 15966
        }
      }
    ],
    "Trigger on LinkedIn Profile Submission": [
      {
        "json": {
          "formMode": "test",
          "profile URL": "https://www.linkedin.com/company/schneider-electric",
          "submittedAt": "2025-09-25T07:39:38.011+10:00"
        }
      }
    ]
  },
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "75bcf111-8da1-4a09-8720-f172678b1c29",
  "connections": {
    "45f9c532-3991-41e7-bf8a-6613e8399580": {
      "main": [
        [
          {
            "node": "db20873e-d1b8-4823-b33c-1160aaa9442e",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "12334649-93b9-488a-ac12-48054e5821e0": {
      "main": [
        [
          {
            "node": "45f9c532-3991-41e7-bf8a-6613e8399580",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3679ae6f-f0f9-4210-9d54-599693845002": {
      "main": [
        [
          {
            "node": "12334649-93b9-488a-ac12-48054e5821e0",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "debcc3e2-04b5-4525-a45b-abea748d86bb": {
      "main": [
        [
          {
            "node": "3679ae6f-f0f9-4210-9d54-599693845002",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "7de66b30-526f-4eb1-ac77-5cae046911ae": {
      "main": [
        [
          {
            "node": "debcc3e2-04b5-4525-a45b-abea748d86bb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Foire aux questions

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é ?

Intermédiaire - Création de contenu, 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

Automatisation de formulaire en article de blog avec Dumpling AI et Google Docs
Utiliser Dumpling AI, OpenAI et Google Docs pour automatiser la création de blog à partir de mots-clés
Code
Wait
Limit
+
Code
Wait
Limit
17 NœudsYang
Création de contenu
Génération automatique de vidéos et de sons de niveau cinématographique pour animaux à partir de formuliers avec Dumpling AI
Convertir des saisies de formulaires en vidéo de qualité cinématographique avec GPT-4, Dumpling AI et audio ElevenLabs
Set
Code
Wait
+
Set
Code
Wait
23 NœudsYang
Création de contenu
Rechercher des questions vidéo TikTok par mots-clés avec Dumpling AI + GPT-4
Trouver des questions vidéo TikTok par mots-clés avec Dumpling AI + GPT-4
Code
Wait
Limit
+
Code
Wait
Limit
16 NœudsYang
Création de contenu
Génération de variantes d'images publicitaires avec GPT-4, Dumpling AI et Google Drive
Utiliser GPT-4, Dumpling AI et Google Drive pour générer des variantes d'images publicitaires
Split Out
Form Trigger
Google Drive
+
Split Out
Form Trigger
Google Drive
14 NœudsYang
Création de contenu
Utiliser Dumpling AI et GPT-4o pour générer des idées de vidéos YouTube
Générer des idées de contenu YouTube avec Dumpling AI et GPT-4o par analyse vidéo
Code
Wait
Gmail
+
Code
Wait
Gmail
13 NœudsYang
Création de contenu
Extraction de sélections de produits à partir de n'importe quel site Web avec Dumpling AI et GPT-4o
Extraire des produits populaires de n'importe quel site web avec Dumpling AI et GPT-4o
Code
Gmail
Split Out
+
Code
Gmail
Split Out
9 NœudsYang
Étude de marché
Informations sur le workflow
Niveau de difficulté
Intermédiaire
Nombre de nœuds7
Catégorie2
Types de nœuds7
Description de la difficulté

Adapté aux utilisateurs expérimentés, avec des workflows de complexité moyenne contenant 6-15 nœuds

Liens externes
Voir sur n8n.io

Partager ce workflow

Catégories

Catégories: 34