GET api/v1/scheduleclockinstatus/{departmentId}/{shiftDate}
Get clock in status of employees for a business day.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| departmentId |
The department Id. |
integer |
Required |
| shiftDate |
The date for which clock in status information is being requested. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
The clock in status of employees for the business day.
ApiResponseModelOfScheduleClockInStatusModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfScheduleClockInStatusModel |
None. |
|
| Errors | Collection of string |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"PageSize": 1,
"Page": 2,
"TotalPages": 3,
"TotalResults": 4,
"Results": {
"KronosExtracted": "2026-01-02T21:48:33.3179081-06:00",
"ShiftClockIns": [
{
"EmployeeID": "sample string 1",
"EmployeeName": "sample string 2",
"Dept": "sample string 3",
"BeginShiftDate": "sample string 4",
"ClockIn": "sample string 5",
"Clock": "sample string 6",
"ClockInStatus": "sample string 7",
"Division": "sample string 8",
"CoId": "sample string 9"
},
{
"EmployeeID": "sample string 1",
"EmployeeName": "sample string 2",
"Dept": "sample string 3",
"BeginShiftDate": "sample string 4",
"ClockIn": "sample string 5",
"Clock": "sample string 6",
"ClockInStatus": "sample string 7",
"Division": "sample string 8",
"CoId": "sample string 9"
}
],
"DepartmentId": 2,
"ClockInDate": "2026-01-02T21:48:33.3179081-06:00"
}
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}