GET api/lookUp/jobindustry
Looks up job industries.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ERP.Api.Models.CustomerPortal.IndustryTypes| Name | Description | Type | Additional information |
|---|---|---|---|
| IndustryTypeID |
Gets or sets the id. |
integer |
None. |
| IndustryTypeLabel |
Gets or sets the label. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"industryTypeID": 1,
"industryTypeLabel": "sample string 2"
},
{
"industryTypeID": 1,
"industryTypeLabel": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfIndustryTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP.Api.Models.CustomerPortal">
<IndustryTypes>
<IndustryTypeID>1</IndustryTypeID>
<IndustryTypeLabel>sample string 2</IndustryTypeLabel>
</IndustryTypes>
<IndustryTypes>
<IndustryTypeID>1</IndustryTypeID>
<IndustryTypeLabel>sample string 2</IndustryTypeLabel>
</IndustryTypes>
</ArrayOfIndustryTypes>