GET api/EmployeeEvalSummary?search={search}&orderBy={orderBy}&skip={skip}&take={take}&FinYearId={FinYearId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| search | string |
Required |
|
| orderBy | string |
Required |
|
| skip | integer |
Required |
|
| take | integer |
Required |
|
| FinYearId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EmpEvalSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeEvalSummaryId | integer |
None. |
|
| FinancialYearId | integer |
None. |
|
| EmployeeId | integer |
None. |
|
| EvalTypeId | integer |
None. |
|
| EvalTypeDescription | string |
None. |
|
| AvgRating | decimal number |
None. |
|
| FinalRating | decimal number |
None. |
|
| EmployeeCode | string |
None. |
|
| EmployeeName | string |
None. |
|
| DepartmentName | string |
None. |
|
| EmployeeManagerName | string |
None. |
|
| CompanyName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EmployeeEvalSummaryId": 1,
"FinancialYearId": 2,
"EmployeeId": 3,
"EvalTypeId": 4,
"EvalTypeDescription": "sample string 5",
"AvgRating": 6.1,
"FinalRating": 7.1,
"EmployeeCode": "sample string 8",
"EmployeeName": "sample string 9",
"DepartmentName": "sample string 10",
"EmployeeManagerName": "sample string 11",
"CompanyName": "sample string 12"
},
{
"EmployeeEvalSummaryId": 1,
"FinancialYearId": 2,
"EmployeeId": 3,
"EvalTypeId": 4,
"EvalTypeDescription": "sample string 5",
"AvgRating": 6.1,
"FinalRating": 7.1,
"EmployeeCode": "sample string 8",
"EmployeeName": "sample string 9",
"DepartmentName": "sample string 10",
"EmployeeManagerName": "sample string 11",
"CompanyName": "sample string 12"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmpEvalSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Web.Api.ViewModel">
<EmpEvalSummary>
<AvgRating>6.1</AvgRating>
<CompanyName>sample string 12</CompanyName>
<DepartmentName>sample string 10</DepartmentName>
<EmployeeCode>sample string 8</EmployeeCode>
<EmployeeEvalSummaryId>1</EmployeeEvalSummaryId>
<EmployeeId>3</EmployeeId>
<EmployeeManagerName>sample string 11</EmployeeManagerName>
<EmployeeName>sample string 9</EmployeeName>
<EvalTypeDescription>sample string 5</EvalTypeDescription>
<EvalTypeId>4</EvalTypeId>
<FinalRating>7.1</FinalRating>
<FinancialYearId>2</FinancialYearId>
</EmpEvalSummary>
<EmpEvalSummary>
<AvgRating>6.1</AvgRating>
<CompanyName>sample string 12</CompanyName>
<DepartmentName>sample string 10</DepartmentName>
<EmployeeCode>sample string 8</EmployeeCode>
<EmployeeEvalSummaryId>1</EmployeeEvalSummaryId>
<EmployeeId>3</EmployeeId>
<EmployeeManagerName>sample string 11</EmployeeManagerName>
<EmployeeName>sample string 9</EmployeeName>
<EvalTypeDescription>sample string 5</EvalTypeDescription>
<EvalTypeId>4</EvalTypeId>
<FinalRating>7.1</FinalRating>
<FinancialYearId>2</FinancialYearId>
</EmpEvalSummary>
</ArrayOfEmpEvalSummary>