Get Employee Standard Hours

Gets the standard hours for this employee.

Request

GET ../api/v1/client/employee/standardhours/{identityCardNumber}

Path parameters

Parameter name
Value
Description
Additional

identityCardNumber

int32

Required

Response

The following HTTP status codes may be returned, optionally with a response resource.

Status code
Message
Data

200

Success

Refer Response Data

Response Data

{
    "advancedWorkWeekConfiguration": "string",
    "employeeId": "int32",
    "fullTimeEquivalentHours": "double",
    "standardHoursPerDay": "double",
    "standardHoursPerWeek": "double",
    "standardWorkDays": [
        {
            "breakEndTime": "string",
            "breakStartTime": "string",
            "dayName": "string",
            "dayOfWeek": "int32",
            "endTime": "string",
            "hours": "double",
            "id": "int32",
            "locationId": "int32",
            "startTime": "string",
            "week": "int32",
            "workDayType": "string",
            "workTypeId": "int32"
        }
    ],
    "useAdvancedWorkWeek": "boolean"
}

Last updated