v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBTime Tracking
Public API
Create Timesheet Clock-In Entry
Clocks in an employee at the current server time. To record a historical clock-in, provide a date, start (HH:MM, 24-hour format), and timezone. You can optionally associate the entry with projectId, taskId (requires projectId), breakId, and a note.
OAuth Scopes: time_tracking.write
post/api/v1/time_tracking/employees/{employeeId}/clock_in
Path parameters
employeeIdinteger required
The internal employee ID of the employee to clock in.
Request body
Example request
{
"projectId": 10,
"taskId": 25,
"note": "Back from lunch.",
"date": "2024-12-12",
"start": "13:00",
"timezone": "America/Denver",
"breakId": "123e4567-e89b-12d3-a456-426614174000"
}Response
The employee was successfully clocked in. Returns the new clock entry details.