← Tools Reference

Harvest

Harvest integration (Productivity). Imported from open-connector.

OAuth13 toolshttps://api.harvestapp.com
GET
harvest_get_current_user
Get the current authenticated Harvest user.

/v2/users/me

GET
harvest_list_clients
List clients available in the connected Harvest account.

/v2/clients

4 parameters
ParamTypeRequiredDescription
isActivebooleanoptionalWhether to return only active or only inactive clients.
updatedSincestringoptionalAn ISO 8601 date-time string with an explicit UTC offset.
pageintegeroptionalThe page number to request.
perPageintegeroptionalThe maximum number of records to return per page.
GET
harvest_get_client
Get a single Harvest client by ID.

/v2/clients/{clientId}

1 parameter
ParamTypeRequiredDescription
clientIdintegerrequiredThe Harvest client ID.
GET
harvest_list_projects
List projects available in the connected Harvest account.

/v2/projects

5 parameters
ParamTypeRequiredDescription
isActivebooleanoptionalWhether to return only active or only inactive projects.
clientIdintegeroptionalThe Harvest client ID.
updatedSincestringoptionalAn ISO 8601 date-time string with an explicit UTC offset.
pageintegeroptionalThe page number to request.
perPageintegeroptionalThe maximum number of records to return per page.
GET
harvest_get_project
Get a single Harvest project by ID.

/v2/projects/{projectId}

1 parameter
ParamTypeRequiredDescription
projectIdintegerrequiredThe Harvest project ID.
GET
harvest_list_tasks
List tasks available in the connected Harvest account.

/v2/tasks

4 parameters
ParamTypeRequiredDescription
isActivebooleanoptionalWhether to return only active or only inactive tasks.
updatedSincestringoptionalAn ISO 8601 date-time string with an explicit UTC offset.
pageintegeroptionalThe page number to request.
perPageintegeroptionalThe maximum number of records to return per page.
GET
harvest_get_task
Get a single Harvest task by ID.

/v2/tasks/{taskId}

1 parameter
ParamTypeRequiredDescription
taskIdintegerrequiredThe Harvest task ID.
GET
harvest_list_project_task_assignments
List task assignments for a specific Harvest project.

/v2/projects/{projectId}/task_assignments

5 parameters
ParamTypeRequiredDescription
projectIdintegerrequiredThe Harvest project ID.
isActivebooleanoptionalWhether to return only active or only inactive task assignments for the project.
updatedSincestringoptionalAn ISO 8601 date-time string with an explicit UTC offset.
pageintegeroptionalThe page number to request.
perPageintegeroptionalThe maximum number of records to return per page.
GET
harvest_list_time_entries
List Harvest time entries with optional resource and date filters.

/v2/time_entries

10 parameters
ParamTypeRequiredDescription
userIdintegeroptionalThe Harvest user ID.
clientIdintegeroptionalThe Harvest client ID.
projectIdintegeroptionalThe Harvest project ID.
taskIdintegeroptionalThe Harvest task ID.
fromstringoptionalAn ISO 8601 date string in YYYY-MM-DD format.
tostringoptionalAn ISO 8601 date string in YYYY-MM-DD format.
isRunningbooleanoptionalWhether to return only running or stopped time entries.
updatedSincestringoptionalAn ISO 8601 date-time string with an explicit UTC offset.
pageintegeroptionalThe page number to request.
perPageintegeroptionalThe maximum number of records to return per page.
GET
harvest_get_time_entry
Get a single Harvest time entry by ID.

/v2/time_entries/{timeEntryId}

1 parameter
ParamTypeRequiredDescription
timeEntryIdintegerrequiredThe Harvest time entry ID.
PATCH
harvest_restart_time_entry
Restart a stopped Harvest time entry.

/v2/time_entries/{timeEntryId}/restart

1 parameter
ParamTypeRequiredDescription
timeEntryIdintegerrequiredThe Harvest time entry ID.
PATCH
harvest_stop_time_entry
Stop a running Harvest time entry.

/v2/time_entries/{timeEntryId}/stop

1 parameter
ParamTypeRequiredDescription
timeEntryIdintegerrequiredThe Harvest time entry ID.
DELETE
harvest_delete_time_entry
Delete a Harvest time entry by ID.

/v2/time_entries/{timeEntryId}

1 parameter
ParamTypeRequiredDescription
timeEntryIdintegerrequiredThe Harvest time entry ID.