Add/Edit Timesheet Clock Entries

Add or edit timesheet clock entries.

🚧

BETA API

The Time Tracking API is currently in public beta. We invite developers who are willing to review, test, and provide feedback to use these endpoints and help us stabilize and move them out of beta.

By using these endpoints, developers understand that the Time Tracking API is subject to change at any time and may cause breaking changes to any integration or application using these endpoints. There may be bugs in how the API performs or inaccuracies in the documentation.

Feedback for this BETA API is appreciated and should be submitted here.

Example Request

{
  "entries": [
    {
      "employeeId": 10,
      "date": "2024-02-01",
      "start": "09:00",
      "end": "17:00",
      "note": "Worked from 9 to 5.",
      "projectId": 1,
      "taskId": 3
    }
  ]
}

Example Response

[
  {
    "id": 150,
    "employeeId": 10,
    "type": "clock",
    "date": "2024-02-01",
    "start": "2024-02-01T14:00:00+00:00",
    "end": "2024-02-02T02:00:00+00:00",
    "timezone": "America/Denver",
    "hours": 8,
    "note": "Worked from 9 to 5.",
    "projectInfo": {
      "project": {
        "id": 1,
        "name": "Project A"
      },
      "task": {
        "id": 3,
        "name": "Task 1"
      }
    }
  }
]
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!