---
title: "Create a new Time Sheet"
method: POST
path: "/v2/timeSheet"
tags: ["TimeSheets"]
---

# Create a new Time Sheet

`POST /v2/timeSheet`

Creates a new Time Sheet and returns the created Time Sheet object.

## Headers

- `Authorization` string, required

## Request body

- CreateTimesheetV2DTO
  - `techId` string, required — The ID of the user to clock into this shift (prefix `USR-`).
  - `jobId` string — The ID of the job associated with this shift (prefix `JOB-`).
  - `laborCost` number — The labor cost per hour of this shift.
  - `startDate` string, required — The start date and time of the shift.
  - `endDate` string, required — The end date and time of the shift.
  - `notes` string — The notes of the shift.

## Response `201`

The created Time Sheet.

- ResponseTimesheetV2Dto
  - `id` string — The ID of the time sheet (prefix `TS-`).
  - `techId` string — The ID of the user logged to this shift (prefix `USR-`).
  - `techName` string — The name of the user logged to this shift.
  - `startDate` string — The start date and time of the shift.
  - `endDate` string — The end date and time of the shift.
  - `notes` string — The notes of the shift.
  - `jobId` string — The ID of the job associated with this shift (prefix `JOB-`).
  - `laborCost` number — The labor cost per hour of this shift.
  - `shiftLength` string — The length of the shift in hours.

## Other responses

- `400` — Invalid input.
- `401` — Missing or invalid authentication token.

---

[API](https://skmtc.net/workiz/apis/developer-api.md) · [All operations](https://skmtc.net/workiz/apis/developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/workiz/developer-api/revisions/14666f4db0f8/schema)
