toggl_get_time_entries
Retrieve time entries from Toggl Track with date range, workspace, or project filters to track and analyze logged work hours.
Instructions
Get time entries with optional date range filters. Returns hydrated entries with project/workspace names.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date (YYYY-MM-DD format) | |
period | No | Predefined period to fetch entries for | |
project_id | No | Filter by project ID | |
start_date | No | Start date (YYYY-MM-DD format) | |
workspace_id | No | Filter by workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date (YYYY-MM-DD format)",
"type": "string"
},
"period": {
"description": "Predefined period to fetch entries for",
"enum": [
"today",
"yesterday",
"week",
"lastWeek",
"month",
"lastMonth"
],
"type": "string"
},
"project_id": {
"description": "Filter by project ID",
"type": "number"
},
"start_date": {
"description": "Start date (YYYY-MM-DD format)",
"type": "string"
},
"workspace_id": {
"description": "Filter by workspace ID",
"type": "number"
}
},
"type": "object"
}