create_time_entry
Track time spent on specific projects and tasks by creating time entries with project ID, task ID, date, and hours. Add optional notes for detailed insights.
Instructions
Create a new time entry.
Args:
project_id: The ID of the project to associate with the time entry
task_id: The ID of the task to associate with the time entry
spent_date: The date when the time was spent (YYYY-MM-DD)
hours: The number of hours spent
notes: Optional notes about the time entryInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hours | Yes | ||
| notes | No | ||
| project_id | Yes | ||
| spent_date | Yes | ||
| task_id | Yes |