create_tag
Create new tags in n8n workflows to organize and categorize automation processes. Define tag names and colors for better workflow management and filtering.
Instructions
Create a new tag
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}