v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBTime Tracking
Public API
Create Time Tracking Shift Differential
Creates a new time tracking shift differential.
OAuth Scopes: time_tracking:shift_differentials.write
post/api/v1/time-tracking/shift-differentials
Request body
Example request
{
"name": "Night Shift Premium",
"rate": "12.00",
"rateType": "AMOUNT",
"employeeIds": [
1,
2,
3
],
"times": [
{
"startDay": "MONDAY",
"endDay": "MONDAY",
"start": "00:00",
"end": "04:00"
}
]
}Response
Shift differential created successfully.
Example response
{
"id": 1,
"name": "Night Shift Premium",
"rate": "12.00",
"rateType": "AMOUNT",
"allowAllEmployees": true,
"times": [
{
"id": 22,
"startDay": "MONDAY",
"endDay": "MONDAY",
"start": "00:00",
"end": "04:00"
}
],
"employeeIds": [
1,
2,
3
],
"createdAt": "2026-01-29T18:52:50Z",
"updatedAt": "2026-02-09T17:56:06Z"
}