Block 1 - Find tags to create
- Type / Role
- n8n-nodes-base.merge - merge
- Config choices
- Version 3.2
Community Node Disclaimer This workflow uses KlickTipp community nodes , available for self hosted n8n instances only . Introduction This workflow receives an array of tag...
n8n-nodes-base.merge, n8n-nodes-base.splitout, n8n-nodes-base.set, n8n-nodes-klicktipp.klicktipp, n8n-nodes-base.stickynote, n8n-nodes-base.aggregate, n8n-nodes-base.executeworkflowtrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by KlickTipp.
Original n8n.io sourceThis workflow uses KlickTipp community nodes, available for self-hosted n8n instances only.
This workflow receives an array of tag names, optionally applies a prefix to all tags, checks which tags already exist in KlickTipp, creates the missing ones, and returns a unified array of resolved tag names. This allows you to reuse the same get or create tags logic across multiple automations without duplicating tag-handling logic.
It’s especially useful when tags are namespaced by a tool or source (for example, Zoho | Webinar) and you want to enforce consistent tagging conventions across different workflows.
tagNames[] — array of base tag namesprefix — optional string applied to all tag namestagNames[] into individual items and builds the final tag name:prefix is provided → prefix tagName (e.g. Zoho | Webinar)prefix is empty → tagName (e.g. Webinar)From a parent workflow, use an Execute Sub-workflow node and pass:
Without prefix
{
"tagNames": ["Webinar", "Newsletter]
}
With prefix
{
"prefix": "Zoho | ",
"tagNames": ["Webinar", "Newsletter"]
}
Resulting tag names resolved or created in KlickTipp:
Returns a unified array of tag names:
{
"tags": ["Zoho | Webinar", "Zoho | Newsletter"]
}
Zoho | ...).tags[] in downstream workflows (for example, for filtering, comparison, or further tagging logic).This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Resolve and create KlickTipp tags from names with optional prefixes |
|---|---|
| Complexity | advanced |
| Nodes | 17 |
| Categories | CRM |
| Author | KlickTipp |
| Published | 25 Feb 2026 |
Use the JSON export at /data/workflows/13699/13699.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Community Node Disclaimer This workflow uses KlickTipp community nodes , available for self hosted n8n instances only . Introduction This workflow receives an array of tag...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your CRM use case.