GET api/EmployeeType?companyCodes={companyCodes}
Gets a list of Employee Types for a company.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
companyCodes | The company codes. |
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" }, { "CompanyCode": "sample string 1", "CompanyId": 2, "DivisionCode": "sample string 3", "DivisionId": 4, "EmployeeTypeCode": "sample string 5", "EmployeeTypeName": "sample string 6", "Classification": "sample string 7" }, { "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:
<ArrayOfEmployeeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.Maintenance.Models.EmployeeType"> <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> <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> <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> </ArrayOfEmployeeType>