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}¶m2={param2})
Name | Description | Type | Additional information |
---|---|---|---|
changedSince | date |
Required |
Body Parameters
None.
Response Information
Resource Description
EmployeeCodeChangesViewName | Description | Type | Additional 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": "2025-01-18T15:57:13.4232232+11: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>2025-01-18T15:57:13.4232232+11:00</UpdateDate> </EmployeeCodeChangesView>