AutomationFlowsGeneral › Buchpilot: Kontakt-sync (sevdesk → Lexoffice)

Buchpilot: Kontakt-sync (sevdesk → Lexoffice)

BuchPilot: Kontakt-Sync (sevDesk → Lexoffice). Uses n8n-nodes-buchpilot. Event-driven trigger; 6 nodes.

Event trigger★★☆☆☆ complexity6 nodesN8N Nodes Buchpilot
General Trigger: Event Nodes: 6 Complexity: ★★☆☆☆ Added:

This workflow corresponds to n8n.io template #buchpilot-contact-sync-v1 — we link there as the canonical source.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "meta": {
    "templateId": "buchpilot-contact-sync-v1"
  },
  "name": "BuchPilot: Kontakt-Sync (sevDesk \u2192 Lexoffice)",
  "nodes": [
    {
      "id": "trigger-1",
      "name": "Neuer sevDesk Kontakt",
      "type": "n8n-nodes-buchpilot.sevDeskTrigger",
      "typeVersion": 1,
      "position": [
        240,
        300
      ],
      "parameters": {
        "event": "newContact"
      },
      "credentials": {
        "sevDeskApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "id": "if-1",
      "name": "Firma oder Person?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "position": [
        460,
        300
      ],
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": false,
            "leftValue": ""
          },
          "conditions": [
            {
              "id": "condition-1",
              "leftValue": "={{ $json.name2 }}",
              "rightValue": "",
              "operator": {
                "type": "string",
                "operation": "isNotEmpty"
              }
            }
          ],
          "combinator": "and"
        }
      }
    },
    {
      "id": "set-firma",
      "name": "Mapping: Firma",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3.4,
      "position": [
        680,
        200
      ],
      "parameters": {
        "mode": "manual",
        "duplicateItem": false,
        "assignments": {
          "assignments": [
            {
              "id": "assign-1",
              "name": "contactType",
              "value": "company",
              "type": "string"
            },
            {
              "id": "assign-2",
              "name": "companyName",
              "value": "={{ $json.name2 }}",
              "type": "string"
            },
            {
              "id": "assign-3",
              "name": "role",
              "value": "customer",
              "type": "string"
            },
            {
              "id": "assign-4",
              "name": "surename",
              "value": "={{ $json.surename }}",
              "type": "string"
            }
          ]
        },
        "options": {}
      }
    },
    {
      "id": "set-person",
      "name": "Mapping: Person",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3.4,
      "position": [
        680,
        400
      ],
      "parameters": {
        "mode": "manual",
        "duplicateItem": false,
        "assignments": {
          "assignments": [
            {
              "id": "assign-5",
              "name": "contactType",
              "value": "person",
              "type": "string"
            },
            {
              "id": "assign-6",
              "name": "lastName",
              "value": "={{ $json.surename }}",
              "type": "string"
            },
            {
              "id": "assign-7",
              "name": "role",
              "value": "customer",
              "type": "string"
            }
          ]
        },
        "options": {}
      }
    },
    {
      "id": "lexoffice-firma",
      "name": "Lexoffice: Firma anlegen",
      "type": "n8n-nodes-buchpilot.lexoffice",
      "typeVersion": 1,
      "position": [
        900,
        200
      ],
      "parameters": {
        "resource": "contact",
        "operation": "create",
        "role": "={{ $json.role }}",
        "contactType": "company",
        "companyName": "={{ $json.companyName }}"
      },
      "credentials": {
        "lexofficeApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "id": "lexoffice-person",
      "name": "Lexoffice: Person anlegen",
      "type": "n8n-nodes-buchpilot.lexoffice",
      "typeVersion": 1,
      "position": [
        900,
        400
      ],
      "parameters": {
        "resource": "contact",
        "operation": "create",
        "role": "={{ $json.role }}",
        "contactType": "person",
        "lastName": "={{ $json.lastName }}"
      },
      "credentials": {
        "lexofficeApi": {
          "name": "<your credential>"
        }
      }
    }
  ],
  "connections": {
    "Neuer sevDesk Kontakt": {
      "main": [
        [
          {
            "node": "Firma oder Person?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Firma oder Person?": {
      "main": [
        [
          {
            "node": "Mapping: Firma",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Mapping: Person",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Mapping: Firma": {
      "main": [
        [
          {
            "node": "Lexoffice: Firma anlegen",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Mapping: Person": {
      "main": [
        [
          {
            "node": "Lexoffice: Person anlegen",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [
    {
      "name": "BuchPilot"
    }
  ]
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

BuchPilot: Kontakt-Sync (sevDesk → Lexoffice). Uses n8n-nodes-buchpilot. Event-driven trigger; 6 nodes.

Source: https://github.com/makririch/n8n-nodes-dachflow/blob/9c701ef10602fbada10ed463cf59ed1212a90e62/templates/sevdesk-lexoffice-contact-sync.json — original creator credit. Request a take-down →

More General workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

General

Http-Handle. Uses httpRequest. Event-driven trigger; 13 nodes.

HTTP Request
General

Absen Otomatis. Uses ssh, executeWorkflowTrigger, scheduleTrigger, httpRequest. Event-driven trigger; 12 nodes.

Ssh, Execute Workflow Trigger, HTTP Request
General

Automate document translation and ensure translation accuracy using Straker Verify, Google Drive and Slack.

N8N Nodes Straker Verify, Google Drive, Google Drive Trigger
General

The Switch node is powerful — but easy to misconfigure. Without a proper fallback, things can silently break. 🧨

Stop And Error
General

This workflow contains community nodes that are only compatible with the self-hosted version of n8n. Monitors Google Drive for new video file uploads Downloads and processes videos using VLM Run AI tr

@Vlm Run/N8N Nodes Vlmrun, Google Drive Trigger, Google Drive +1