GET api/MGDReport/GetEmployeePerformanceReport_Employee?BranchCode={BranchCode}&Month={Month}&Year={Year}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BranchCode

string

Required

Month

integer

Required

Year

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PMSData_Employee
NameDescriptionTypeAdditional information
intEmpCode

integer

None.

intEmpUserCode

integer

None.

strName

string

None.

strDesignation

string

None.

strDepartment

string

None.

strGrade

string

None.

decTotalMark

decimal number

None.

decMarkAchived

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "intEmpCode": 1,
    "intEmpUserCode": 2,
    "strName": "sample string 3",
    "strDesignation": "sample string 4",
    "strDepartment": "sample string 5",
    "strGrade": "sample string 6",
    "decTotalMark": 7.0,
    "decMarkAchived": 8.0
  },
  {
    "intEmpCode": 1,
    "intEmpUserCode": 2,
    "strName": "sample string 3",
    "strDesignation": "sample string 4",
    "strDepartment": "sample string 5",
    "strGrade": "sample string 6",
    "decTotalMark": 7.0,
    "decMarkAchived": 8.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfPMSData_Employee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <PMSData_Employee>
    <decMarkAchived>8</decMarkAchived>
    <decTotalMark>7</decTotalMark>
    <intEmpCode>1</intEmpCode>
    <intEmpUserCode>2</intEmpUserCode>
    <strDepartment>sample string 5</strDepartment>
    <strDesignation>sample string 4</strDesignation>
    <strGrade>sample string 6</strGrade>
    <strName>sample string 3</strName>
  </PMSData_Employee>
  <PMSData_Employee>
    <decMarkAchived>8</decMarkAchived>
    <decTotalMark>7</decTotalMark>
    <intEmpCode>1</intEmpCode>
    <intEmpUserCode>2</intEmpUserCode>
    <strDepartment>sample string 5</strDepartment>
    <strDesignation>sample string 4</strDesignation>
    <strGrade>sample string 6</strGrade>
    <strName>sample string 3</strName>
  </PMSData_Employee>
</ArrayOfPMSData_Employee>