toggl_workspace_summary
Calculate total hours per workspace for specified date ranges to track time allocation and productivity across projects.
Instructions
Get total hours per workspace for a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date (YYYY-MM-DD format) | |
period | No | Predefined period | |
start_date | No | Start date (YYYY-MM-DD format) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date (YYYY-MM-DD format)",
"type": "string"
},
"period": {
"description": "Predefined period",
"enum": [
"week",
"lastWeek",
"month",
"lastMonth"
],
"type": "string"
},
"start_date": {
"description": "Start date (YYYY-MM-DD format)",
"type": "string"
}
},
"type": "object"
}