POST api/employee/punch-employee
Get employee by number
Request Information
URI Parameters
None.
Body Parameters
ClockRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| PunchArr | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": 1,
"punchArr": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of EmployeeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| EmployeeNumber | string |
None. |
|
| HasAutomaticClockIn | boolean |
None. |
|
| FullName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"employeeNumber": "sample string 2",
"hasAutomaticClockIn": true,
"fullName": "sample string 3"
},
{
"id": 1,
"employeeNumber": "sample string 2",
"hasAutomaticClockIn": true,
"fullName": "sample string 3"
}
]