Add Timesheet Clock-In Entry

Clock in an employee.

🚧

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

{
  "projectId": 10,
  "taskId": 24,
  "note": "Working on project A."
}

Example Response

{
  "id": 37,
  "employeeId": 11718,
  "type": "clock",
  "date": "2023-06-23",
  "start": "2023-06-23T17:20:00+00:00",
  "end": null,
  "timezone": "America/Halifax",
  "hours": null,
  "note": "Working on project A.",
  "projectInfo": {
    "project": {
      "id": 10,
      "name": "Project A"
    },
    "task": {
      "id": 24,
      "name": "Task 1"
    }
  }
}

Notes

Optional Body Parameters

  • projectId is optional, unless a taskId is specified
  • taskId is optional
  • note is optional
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!