Tool details
| Field | Value |
|---|---|
| Name | harvest__list_time_entries |
| 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)"
},
"user_id": {
"type": "number",
"description": "Filter by user ID"
},
"client_id": {
"type": "number",
"description": "Filter by client ID"
},
"project_id": {
"type": "number",
"description": "Filter by project ID"
},
"task_id": {
"type": "number",
"description": "Filter by task ID"
},
"is_running": {
"type": "boolean",
"description": "Filter to only currently running timers"
},
"is_billed": {
"type": "boolean",
"description": "Filter by billed status"
},
"from": {
"type": "string",
"description": "Start date (YYYY-MM-DD). Return entries with spent_date >= from."
},
"to": {
"type": "string",
"description": "End date (YYYY-MM-DD). Return entries with spent_date <= to."
},
"updated_since": {
"type": "string",
"description": "Only return entries updated after this ISO 8601 datetime"
},
"page": {
"type": "number",
"description": "Page number"
},
"per_page": {
"type": "number",
"description": "Results per page (max 100)"
}
},
"required": [
"account_id"
],
"description": "Input schema for the harvest__list_time_entries tool."
}