Generate per-employee shift reports
GET
/api/timesheets/reportPerEmployee
shifts
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/timesheets/reportPerEmployee?startDate&endDate'
Response Response Example
200 - Success
{
"data": [
{
"amount": 160,
"duration": 450,
"employeeId": "emp_001",
"externalId": "ext_emp_001",
"totalUnpaidBreaks": 30
}
],
"totals": {
"duration": 450,
"totalUnpaidBreaks": 30,
"amount": 160
}
}
Request
Query Params
startDate
string <date>
required
Example:
2023-10-27
endDate
string <date>
required
Example:
2023-10-28
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