GET api/EmployeeCodeChanges

Gets list of employees whos employee code have been changed from a given date

Request Information

URI Parameters

(i.e.queryString parameters in the form ?param1={param1}&param2={param2})

NameDescriptionTypeAdditional information
changedSince

date

Required

Body Parameters

None.

Response Information

Resource Description

EmployeeCodeChangesView
NameDescriptionTypeAdditional information
EmpCode

string

None.

OldEmpCode

string

None.

UpdateDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "empCode": "sample string 2",
  "oldEmpCode": "sample string 3",
  "updateDate": "2024-05-19T11:04:57.003928+10:00"
}

application/xml, text/xml

Sample:
<EmployeeCodeChangesView xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <idEmployeeCodeChanges>1</idEmployeeCodeChanges>
  <EmpCode>sample string 2</EmpCode>
  <OldEmpCode>sample string 3</OldEmpCode>
  <UpdateDate>2024-05-19T11:04:57.003928+10:00</UpdateDate>
</EmployeeCodeChangesView>