log_time
Record hours an employee worked on a project for a specific day, with optional note. Logged time immediately updates project hours and utilization reports.
Instructions
Log hours that an employee worked on a project for a specific day. Use this when
someone reports time worked or asks you to record effort. employee and project
accept a name, a unique name fragment, or a numeric id; date is YYYY-MM-DD; hours
must be greater than 0 and at most 24; note is an optional short description of the
work. Returns the created time entry including its id. Logged time immediately shows
up in get_project_hours and utilization_report.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| employee | Yes | ||
| project | Yes | ||
| date | Yes | ||
| hours | Yes | ||
| note | No |