update_tag
Modify existing tags in n8n workflows by updating their name and color properties through the n8n API.
Instructions
Update an existing tag
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| id | Yes | ||
| name | No |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"type": "string"
},
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"name": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}