Update a specific shift
PATCH
/api/timesheets/{id}
shifts
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/timesheets/' \
--header 'Content-Type: application/json' \
--data-raw '{
"endTime": "2023-10-27T17:30:00Z",
"breaks": [
{
"startTime": "2023-10-27T12:00:00Z",
"endTime": "2023-10-27T13:00:00Z",
"typeId": "break_type_002",
"paid": true,
"name": "Extended Lunch",
"mandatory": false,
"frequencyMinutes": 180,
"durationInSettingsMinutes": 60
}
]
}'
Response Response Example
200 - Success
{
"id": "shift_001",
"employeeId": "emp_001",
"locationId": "loc_001",
"roleId": "role_001",
"startTime": "2023-10-27T09:00:00Z",
"endTime": "2023-10-27T17:30:00Z",
"breaks": [
{
"startTime": "2023-10-27T12:00:00Z",
"endTime": "2023-10-27T13:00:00Z",
"typeId": "break_type_002",
"paid": true,
"name": "Extended Lunch",
"mandatory": false,
"frequencyMinutes": 180,
"durationInSettingsMinutes": 60
}
],
"hourlyWage": 20,
"totalPaidBreaks": 60,
"totalUnpaidBreaks": 0,
"duration": 510,
"payableDuration": 450,
"utcOffset": -240,
"utcStartTime": "2023-10-27T13:00:00Z",
"utcEndTime": "2023-10-27T21:30:00Z",
"locked": false,
"active": true,
"createdAt": "2023-10-27T09:00:00Z",
"updatedAt": "2023-10-27T17:30:00Z",
"deletedAt": null
}
Request
Path Params
id
string
required
Example:
shift_001
Body Params application/json