{"id":7955,"date":"2025-08-13T15:06:18","date_gmt":"2025-08-13T13:06:18","guid":{"rendered":"https:\/\/launix.de\/launix\/?p=7955"},"modified":"2025-08-19T11:09:47","modified_gmt":"2025-08-19T09:09:47","slug":"automatisierung-vom-kontaktformular-direkt-ins-crm","status":"publish","type":"post","link":"https:\/\/launix.de\/launix\/automatisierung-vom-kontaktformular-direkt-ins-crm\/","title":{"rendered":"Automatisierung: Vom Kontaktformular direkt ins CRM"},"content":{"rendered":"\n<p>Die Low-Code-Plattform n8n ist ein n\u00fctzliches Tool zur Automatisierung von Schritten. Ein sehr nerviger Schritt ist die \u00dcbernahme von Kontaktinformationen aus Online-Formularen ins CRM. In diesem Tutorial zeigen wir, wie man ein Kontaktformular ins Launix-CRM \u00fcbernimmt.<\/p>\n\n\n\n<!--more-->\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"n8n: vom Kontaktformular direkt ins CRM \u00fcbernehmen (Launix)\" width=\"751\" height=\"422\" src=\"https:\/\/www.youtube.com\/embed\/vStG1PIsz6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>Die n8n-Komponente von Launix kann man sich unter folgendem Link herunterladen:<\/p>\n\n\n\n<p><a href=\"http:\/\/www.npmjs.com\/package\/n8n-nodes-launix\">www.npmjs.com\/package\/n8n-nodes-launix<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"529\" src=\"https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-1024x529.png\" alt=\"\" class=\"wp-image-7958\" srcset=\"https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-1024x529.png 1024w, https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-300x155.png 300w, https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-768x397.png 768w, https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-1536x793.png 1536w, https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1-18x9.png 18w, https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-13-at-14-23-55-\u25b6\ufe0f-Kontaktformular-CRM-n8n-1.png 1865w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>Hier ist noch der n8n-Code zum Kopieren:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"nodes\": &#91;\n    {\n      \"parameters\": {\n        \"formTitle\": \"Kontaktformular\",\n        \"formFields\": {\n          \"values\": &#91;\n            {\n              \"fieldLabel\": \"Name\"\n            },\n            {\n              \"fieldLabel\": \"Vorname\"\n            },\n            {\n              \"fieldLabel\": \"Firma\"\n            },\n            {\n              \"fieldLabel\": \"E-Mail\",\n              \"fieldType\": \"email\"\n            },\n            {\n              \"fieldLabel\": \"Telefonnummer\"\n            }\n          ]\n        },\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.formTrigger\",\n      \"typeVersion\": 2.2,\n      \"position\": &#91;\n        -320,\n        -32\n      ],\n      \"id\": \"baefa1a1-eae6-440f-bd8a-c468b6641bb7\",\n      \"name\": \"On form submission\",\n      \"webhookId\": \"8dc82ce4-0201-48e6-9faa-a9ec316a4fb1\"\n    },\n    {\n      \"parameters\": {\n        \"table\": {\n          \"__rl\": true,\n          \"value\": \"Kunde\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"Kunde (kunde)\"\n        },\n        \"operation\": \"create\",\n        \"data\": \"={\\n\\\"typ\\\": 3,\\n\\\"name\\\": {{ JSON.stringify($json.Name) }},\\n\\\"vorname\\\": {{ JSON.stringify($json.Vorname) }},\\n\\\"firma\\\": {{ JSON.stringify($json.Firma) }}\\n}\"\n      },\n      \"type\": \"n8n-nodes-launix.launixNode\",\n      \"typeVersion\": 1,\n      \"position\": &#91;\n        -112,\n        -32\n      ],\n      \"id\": \"63b61521-bc86-4bd2-a938-0ec67b881696\",\n      \"name\": \"Kunde anlegen\",\n      \"credentials\": {\n        \"launixCredentialsApi\": {\n          \"id\": \"Uco1GL0LH7PpNaTY\",\n          \"name\": \"Launix Credentials account\"\n        }\n      }\n    },\n    {\n      \"parameters\": {\n        \"table\": {\n          \"__rl\": true,\n          \"value\": \"KundeEmailAddress\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"E-Mail-Adresse (kundeEmailAddress)\"\n        },\n        \"operation\": \"create\",\n        \"data\": \"={\\n  \\\"parent\\\": {{ $json.id }},\\n  \\\"email\\\": {{ JSON.stringify($('On form submission').item.json&#91;\\\"E-Mail\\\"]) }}\\n}\"\n      },\n      \"type\": \"n8n-nodes-launix.launixNode\",\n      \"typeVersion\": 1,\n      \"position\": &#91;\n        96,\n        -32\n      ],\n      \"id\": \"6196a5f4-05e8-4919-82b9-d12bb4577524\",\n      \"name\": \"E-Mail anlegen\",\n      \"credentials\": {\n        \"launixCredentialsApi\": {\n          \"id\": \"Uco1GL0LH7PpNaTY\",\n          \"name\": \"Launix Credentials account\"\n        }\n      }\n    },\n    {\n      \"parameters\": {\n        \"table\": {\n          \"__rl\": true,\n          \"value\": \"KundeTelephone\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"Telefonnummer (kundeTelephone)\"\n        },\n        \"operation\": \"create\",\n        \"data\": \"={\\n  \\\"parent\\\": {{ $('Kunde anlegen').item.json.id }},\\n  \\\"number\\\": {{ JSON.stringify($('On form submission').item.json.Telefonnummer) }}\\n}\"\n      },\n      \"type\": \"n8n-nodes-launix.launixNode\",\n      \"typeVersion\": 1,\n      \"position\": &#91;\n        320,\n        -32\n      ],\n      \"id\": \"5ce0ca38-2252-47b0-a17a-f8cc1fd8bbe3\",\n      \"name\": \"Telefonnummer anlegen\",\n      \"credentials\": {\n        \"launixCredentialsApi\": {\n          \"id\": \"Uco1GL0LH7PpNaTY\",\n          \"name\": \"Launix Credentials account\"\n        }\n      }\n    },\n    {\n      \"parameters\": {\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.emailSend\",\n      \"typeVersion\": 2.1,\n      \"position\": &#91;\n        528,\n        -32\n      ],\n      \"id\": \"8ac795d5-ff91-4aaf-a59c-224cec7f77cd\",\n      \"name\": \"Send email\",\n      \"webhookId\": \"afe927d4-4f0d-4f67-998d-cd196f1eea4c\",\n      \"credentials\": {\n        \"smtp\": {\n          \"id\": \"xjtBHL0oDVX7G1tc\",\n          \"name\": \"info@launix.de\"\n        }\n      },\n      \"disabled\": true\n    }\n  ],\n  \"connections\": {\n    \"On form submission\": {\n      \"main\": &#91;\n        &#91;\n          {\n            \"node\": \"Kunde anlegen\",\n            \"type\": \"main\",\n            \"index\": 0\n          }\n        ]\n      ]\n    },\n    \"Kunde anlegen\": {\n      \"main\": &#91;\n        &#91;\n          {\n            \"node\": \"E-Mail anlegen\",\n            \"type\": \"main\",\n            \"index\": 0\n          }\n        ]\n      ]\n    },\n    \"E-Mail anlegen\": {\n      \"main\": &#91;\n        &#91;\n          {\n            \"node\": \"Telefonnummer anlegen\",\n            \"type\": \"main\",\n            \"index\": 0\n          }\n        ]\n      ]\n    },\n    \"Telefonnummer anlegen\": {\n      \"main\": &#91;\n        &#91;\n          {\n            \"node\": \"Send email\",\n            \"type\": \"main\",\n            \"index\": 0\n          }\n        ]\n      ]\n    }\n  },\n  \"pinData\": {},\n  \"meta\": {\n    \"templateCredsSetupCompleted\": true,\n    \"instanceId\": \"5d646b97a6f5b390970161e7d5b6c2999c720df20b57515df0439cbab498ca6c\"\n  }\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Die Low-Code-Plattform n8n ist ein n\u00fctzliches Tool zur Automatisierung von Schritten. Ein sehr nerviger Schritt ist die \u00dcbernahme von Kontaktinformationen aus Online-Formularen ins CRM. In diesem Tutorial zeigen wir, wie man ein Kontaktformular ins Launix-CRM \u00fcbernimmt.<\/p>\n","protected":false},"author":2,"featured_media":7957,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_uag_custom_page_level_css":"","footnotes":""},"categories":[142,413],"tags":[],"class_list":["post-7955","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-handbuch","category-n8n","single-item"],"featured_image_urls_v2":{"full":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren.png",1920,1080,false],"thumbnail":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-150x150.png",150,150,true],"medium":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-300x169.png",300,169,true],"medium_large":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-768x432.png",751,422,true],"large":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-1024x576.png",751,422,true],"1536x1536":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-1536x864.png",1536,864,true],"2048x2048":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren.png",1920,1080,false],"trp-custom-language-flag":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-18x10.png",18,10,true],"xs-thumb":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-64x64.png",64,64,true],"appku-shop-single":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-620x500.png",620,500,true]},"post_excerpt_stackable_v2":"<p>Die Low-Code-Plattform n8n ist ein n\u00fctzliches Tool zur Automatisierung von Schritten. Ein sehr nerviger Schritt ist die \u00dcbernahme von Kontaktinformationen aus Online-Formularen ins CRM. In diesem Tutorial zeigen wir, wie man ein Kontaktformular ins Launix-CRM \u00fcbernimmt. Die n8n-Komponente von Launix kann man sich unter folgendem Link herunterladen: www.npmjs.com\/package\/n8n-nodes-launix Hier ist noch der n8n-Code zum Kopieren: { &#8220;nodes&#8221;: &#91; { &#8220;parameters&#8221;: { &#8220;formTitle&#8221;: &#8220;Kontaktformular&#8221;, &#8220;formFields&#8221;: { &#8220;values&#8221;: &#91; { &#8220;fieldLabel&#8221;: &#8220;Name&#8221; }, { &#8220;fieldLabel&#8221;: &#8220;Vorname&#8221; }, { &#8220;fieldLabel&#8221;: &#8220;Firma&#8221; }, { &#8220;fieldLabel&#8221;: &#8220;E-Mail&#8221;, &#8220;fieldType&#8221;: &#8220;email&#8221; }, { &#8220;fieldLabel&#8221;: &#8220;Telefonnummer&#8221; } ] }, &#8220;options&#8221;: {} }, &#8220;type&#8221;: &#8220;n8n-nodes-base.formTrigger&#8221;, &#8220;typeVersion&#8221;: 2.2, &#8220;position&#8221;: &#91;&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/launix.de\/launix\/category\/handbuch\/\" rel=\"category tag\">Handbuch<\/a>, <a href=\"https:\/\/launix.de\/launix\/category\/n8n\/\" rel=\"category tag\">n8n<\/a>","author_info_v2":{"name":"Carl-Philip H\u00e4nsch","url":"https:\/\/launix.de\/launix\/author\/carli\/"},"comments_num_v2":"0 comments","uagb_featured_image_src":{"full":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren.png",1920,1080,false],"thumbnail":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-150x150.png",150,150,true],"medium":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-300x169.png",300,169,true],"medium_large":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-768x432.png",751,422,true],"large":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-1024x576.png",751,422,true],"1536x1536":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-1536x864.png",1536,864,true],"2048x2048":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren.png",1920,1080,false],"trp-custom-language-flag":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-18x10.png",18,10,true],"xs-thumb":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-64x64.png",64,64,true],"appku-shop-single":["https:\/\/launix.de\/launix\/wp-content\/uploads\/2025\/08\/CRM-n8n-Automatisieren-620x500.png",620,500,true]},"uagb_author_info":{"display_name":"Carl-Philip H\u00e4nsch","author_link":"https:\/\/launix.de\/launix\/author\/carli\/"},"uagb_comment_info":0,"uagb_excerpt":"Die Low-Code-Plattform n8n ist ein n\u00fctzliches Tool zur Automatisierung von Schritten. Ein sehr nerviger Schritt ist die \u00dcbernahme von Kontaktinformationen aus Online-Formularen ins CRM. In diesem Tutorial zeigen wir, wie man ein Kontaktformular ins Launix-CRM \u00fcbernimmt.","_links":{"self":[{"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/posts\/7955","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/comments?post=7955"}],"version-history":[{"count":2,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/posts\/7955\/revisions"}],"predecessor-version":[{"id":7961,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/posts\/7955\/revisions\/7961"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/media\/7957"}],"wp:attachment":[{"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/media?parent=7955"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/categories?post=7955"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/launix.de\/launix\/wp-json\/wp\/v2\/tags?post=7955"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}