Tool details
| Field | Value |
|---|---|
| Name | harvest__create_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)"
},
"project_id": {
"type": "number",
"description": "Harvest project ID"
},
"task_id": {
"type": "number",
"description": "Harvest task ID"
},
"spent_date": {
"type": "string",
"description": "Date of the time entry (YYYY-MM-DD)"
},
"user_id": {
"type": "number",
"description": "User ID to log time for (defaults to authenticated user)"
},
"hours": {
"type": "number",
"description": "Hours to log (e.g. 1.5). Use instead of started_time/ended_time."
},
"started_time": {
"type": "string",
"description": "Start time (hh:mmam/pm, e.g. 8:00am). Use with ended_time instead of hours."
},
"ended_time": {
"type": "string",
"description": "End time (hh:mmam/pm, e.g. 5:30pm). Use with started_time instead of hours."
},
"notes": {
"type": "string",
"description": "Notes about the time entry"
},
"external_reference": {
"type": "object",
"description": "External reference object with id, group_id, account_id, permalink"
}
},
"required": [
"account_id",
"project_id",
"task_id",
"spent_date"
],
"description": "Input schema for the harvest__create_time_entry tool."
}