toggl_start_timer
Start a new Toggl timer to track time for specific tasks with optional project, tags, and workspace details for accurate time management.
Instructions
Start a new time entry timer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the time entry | |
project_id | No | Project ID (optional) | |
tags | No | Tags for the entry | |
task_id | No | Task ID (optional) | |
workspace_id | No | Workspace ID (uses default if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the time entry",
"type": "string"
},
"project_id": {
"description": "Project ID (optional)",
"type": "number"
},
"tags": {
"description": "Tags for the entry",
"items": {
"type": "string"
},
"type": "array"
},
"task_id": {
"description": "Task ID (optional)",
"type": "number"
},
"workspace_id": {
"description": "Workspace ID (uses default if not provided)",
"type": "number"
}
},
"type": "object"
}