🀝 Resolve and create KlickTipp tags from names with optional prefixes

⚑ 0 views · 🀝 CRM & Sales Operations

Description

image.png

Community Node Disclaimer

This workflow uses KlickTipp community nodes, available for self-hosted n8n instances only.


Introduction

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.


How it works


Setup Instructions

1) Credentials

2) How to call this sub-workflow

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:


Output

Returns a unified array of tag names:

{  
  "tags": ["Zoho | Webinar", "Zoho | Newsletter"]  
}

Testing

πŸ”— Nodes Used

Execute Workflow Trigger

πŸ“₯ Import

Download workflow.json and import into n8n: Workflow menu β†’ Import from File

πŸ“– Importing guide Β· πŸ”‘ Credential setup