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

Gets the specified Employee Type.

Request Information

Parameters

NameDescriptionAdditional information
companyCode
The company code.

Define this parameter in the request URI.

divisionCode
The division code.

Define this parameter in the request URI.

employeeTypeCode
The employee type code.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "CompanyCode": "sample string 1",
  "CompanyId": 2,
  "DivisionCode": "sample string 3",
  "DivisionId": 4,
  "EmployeeTypeCode": "sample string 5",
  "EmployeeTypeName": "sample string 6",
  "Classification": "sample string 7"
}

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>sample string 7</Classification>
  <CompanyCode>sample string 1</CompanyCode>
  <CompanyId>2</CompanyId>
  <DivisionCode>sample string 3</DivisionCode>
  <DivisionId>4</DivisionId>
  <EmployeeTypeCode>sample string 5</EmployeeTypeCode>
  <EmployeeTypeName>sample string 6</EmployeeTypeName>
</EmployeeType>