GET api/EmployeeType?companyCode={companyCode}&divisionCode={divisionCode}&employeeTypeCode={employeeTypeCode}

Gets the specified Employee Type.

Request Information

Parameters

Name Description
companyCode

(param in the URI)

The company code.
divisionCode

(param in the URI)

The division code.
employeeTypeCode

(param in the URI)

The employee type code.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "CompanyCode": "",
  "CompanyId": 0,
  "DivisionCode": "",
  "DivisionId": 0,
  "EmployeeTypeCode": "",
  "EmployeeTypeName": "",
  "Classification": ""
}

application/xml, text/xml

Sample:
<EmployeeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.Maintenance.Models.EmployeeType">
  <Classification></Classification>
  <CompanyCode></CompanyCode>
  <CompanyId>0</CompanyId>
  <DivisionCode></DivisionCode>
  <DivisionId>0</DivisionId>
  <EmployeeTypeCode></EmployeeTypeCode>
  <EmployeeTypeName></EmployeeTypeName>
</EmployeeType>