GET v1/Employees/GetEmployeeLastPunchInfoByEmployeeNumber/{employeeNumber}
Retrieves EmployeeLastPunchInfo Object by distinct Employee Number
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeNumber |
The Employee Number. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
EmployeeLastPunchInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeNumber | string |
None. |
|
| Status | string |
None. |
|
| LastPunched | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmployeeNumber": "sample string 1",
"Status": "sample string 2",
"LastPunched": "2026-05-14T00:17:21.509655-04:00"
}
application/xml, text/xml
Sample:
<EmployeeLastPunchInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.TimeAttendance.WebAPI.Models"> <EmployeeNumber>sample string 1</EmployeeNumber> <LastPunched>2026-05-14T00:17:21.509655-04:00</LastPunched> <Status>sample string 2</Status> </EmployeeLastPunchInfo>