harvest_create_time_entry
Create a new time entry in Harvest by specifying project, task, date, hours worked, and optional notes for accurate time tracking.
Instructions
Create a new time entry. Use about {"tool": "harvest_create_time_entry"} for detailed parameters and examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hours | No | Hours worked | |
notes | No | Notes for the time entry | |
project_id | Yes | Project ID | |
spent_date | Yes | Date of the entry (YYYY-MM-DD) | |
task_id | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"hours": {
"description": "Hours worked",
"type": "number"
},
"notes": {
"description": "Notes for the time entry",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"spent_date": {
"description": "Date of the entry (YYYY-MM-DD)",
"type": "string"
},
"task_id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"project_id",
"task_id",
"spent_date"
],
"type": "object"
}