v1

latestOpenAPI 3.1.02026-07-14801408.6 KB

/time-tracking/time-entries

Bulk creates complete time entries for one or more employees (max 500). Supports both user and account tokens. Required scope: w_time_tracking.

post/time-tracking/time-entries

Request body

Response

200

uuidstring
employee_idstring
clock_in_timestring

ISO 8601 clock-in timestamp in UTC (with Z suffix)

clock_out_timestring

ISO 8601 clock-out timestamp in UTC (with Z suffix)

notestring nullable

Example response

[
  {
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "employee_id": "3fc9a811",
    "clock_in_time": "2024-01-15T09:00:00.000Z",
    "clock_out_time": "2024-01-15T17:30:00.000Z",
    "note": "Regular shift"
  }
]