get_tag
Retrieve specific workflow tags by ID to organize and categorize n8n automation workflows for better management and filtering.
Instructions
Get a specific 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"
}