Tool details
| Field | Value |
|---|---|
| Name | harvest__update_time_entry |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"account_id": {
"type": "string",
"description": "Harvest Account ID (get it from harvest__list_accounts)"
},
"timeEntryId": {
"type": "number",
"description": "Harvest time entry ID"
},
"project_id": {
"type": "number",
"description": "Updated project ID"
},
"task_id": {
"type": "number",
"description": "Updated task ID"
},
"spent_date": {
"type": "string",
"description": "Updated date (YYYY-MM-DD)"
},
"hours": {
"type": "number",
"description": "Updated hours"
},
"started_time": {
"type": "string",
"description": "Updated start time (hh:mmam/pm)"
},
"ended_time": {
"type": "string",
"description": "Updated end time (hh:mmam/pm)"
},
"notes": {
"type": "string",
"description": "Updated notes"
},
"is_locked": {
"type": "boolean",
"description": "Lock/unlock the time entry"
}
},
"required": [
"account_id",
"timeEntryId"
],
"description": "Input schema for the harvest__update_time_entry tool."
}