harvest_update_time_entry
Modify an existing time entry in Harvest by updating project, task, date, hours, or notes to correct or adjust recorded work time.
Instructions
Update an existing time entry. Use about {"tool": "harvest_update_time_entry"} for detailed parameters and examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hours | No | Hours worked | |
id | Yes | Time entry ID | |
notes | No | Notes for the time entry | |
project_id | No | Project ID | |
spent_date | No | Date of the entry (YYYY-MM-DD) | |
task_id | No | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"hours": {
"description": "Hours worked",
"type": "number"
},
"id": {
"description": "Time entry ID",
"type": "string"
},
"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": [
"id"
],
"type": "object"
}