delete_tag
Remove a specific tag from your Clockify workspace by providing the workspace ID and tag ID, simplifying tag management and organization within projects.
Instructions
Delete a tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tagId | Yes | Tag ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"tagId": {
"description": "Tag ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"tagId"
],
"type": "object"
}