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 entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hours | Yes | ||
notes | No | ||
project_id | Yes | ||
spent_date | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hours": {
"title": "Hours",
"type": "number"
},
"notes": {
"default": null,
"title": "Notes",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"spent_date": {
"title": "Spent Date",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "integer"
}
},
"required": [
"project_id",
"task_id",
"spent_date",
"hours"
],
"title": "create_time_entryArguments",
"type": "object"
}