GET api/Employees/History?employeeId={employeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EmployeeHistoryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| DateOfAction | date |
None. |
|
| EmployeeCreateName | string |
None. |
|
| EmployeeCreateEmail | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"description": "sample string 2",
"dateOfAction": "2025-12-06T12:27:07.026741+07:00",
"employeeCreateName": "sample string 3",
"employeeCreateEmail": "sample string 4"
},
{
"id": 1,
"description": "sample string 2",
"dateOfAction": "2025-12-06T12:27:07.026741+07:00",
"employeeCreateName": "sample string 3",
"employeeCreateEmail": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployeeHistoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Employee">
<EmployeeHistoryModel>
<DateOfAction>2025-12-06T12:27:07.026741+07:00</DateOfAction>
<Description>sample string 2</Description>
<EmployeeCreateEmail>sample string 4</EmployeeCreateEmail>
<EmployeeCreateName>sample string 3</EmployeeCreateName>
<Id>1</Id>
</EmployeeHistoryModel>
<EmployeeHistoryModel>
<DateOfAction>2025-12-06T12:27:07.026741+07:00</DateOfAction>
<Description>sample string 2</Description>
<EmployeeCreateEmail>sample string 4</EmployeeCreateEmail>
<EmployeeCreateName>sample string 3</EmployeeCreateName>
<Id>1</Id>
</EmployeeHistoryModel>
</ArrayOfEmployeeHistoryModel>