delete_tag
Remove tags from n8n workflows by specifying the tag ID to maintain organized workflow management and categorization.
Instructions
Delete a tag by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"id"
],
"type": "object"
}