Generate shift reports
GET
/api/timesheets/reports
shifts
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/timesheets/reports?startDate&endDate'
Response Response Example
200 - Success
{
"days": [
{
"amount": 160,
"day": "2023-10-27",
"duration": 450,
"employeeId": "emp_001",
"externalId": "ext_emp_001",
"locationId": "loc_001",
"organizationId": "org_12345",
"totalUnpaidBreaks": 30,
"hoursWorked": "7.5",
"locked": false
}
],
"totals": {
"totalUnpaidBreaks": 30,
"duration": 450,
"amount": 160
}
}
Request
Query Params
startDate
string <date>
required
Example:
2023-10-27
endDate
string <date>
required
Example:
2023-10-28
utcOffset
integer <int32>
optional
Example:
-240
employees
array[string]
optional
Example:
["emp_001","emp_002"]
locations
array[string]
optional
Example:
["loc_001","loc_002"]
page
integer <int32>
optional
Example:
1
limit
integer <int32>
optional
Example:
10