create_tag
Create a new tag in Clockify by specifying a workspace ID and tag name, with an optional archived status, to enhance task organization and time tracking.
Instructions
Create a new tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Whether tag is archived (optional) | |
name | Yes | Tag name | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether tag is archived (optional)",
"type": "boolean"
},
"name": {
"description": "Tag name",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"name"
],
"type": "object"
}