GET v1/Employees/GetEmployeeLastPunchInfoByEmployeeNumber/{employeeNumber}

Retrieves EmployeeLastPunchInfo Object by distinct Employee Number

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeNumber

The Employee Number.

string

Required

Body Parameters

None.

Response Information

Resource Description

EmployeeLastPunchInfo
NameDescriptionTypeAdditional 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": "2024-04-25T13:19:58.6214726-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>2024-04-25T13:19:58.6214726-04:00</LastPunched>
  <Status>sample string 2</Status>
</EmployeeLastPunchInfo>