GET api/v2/Company/{id}/Industries
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IndustryName | Description | Type | Additional information |
---|---|---|---|
IndustryId | integer |
None. |
|
IndustryName | string |
None. |
|
CompanyAlphaSet | string |
None. |
|
LongTitle | string |
None. |
|
InheritSectorsFrom | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[ { "IndustryId": 1, "IndustryName": "sample string 2", "CompanyAlphaSet": "sample string 3", "LongTitle": "sample string 4", "InheritSectorsFrom": 5 }, { "IndustryId": 1, "IndustryName": "sample string 2", "CompanyAlphaSet": "sample string 3", "LongTitle": "sample string 4", "InheritSectorsFrom": 5 } ]
application/xml, text/xml
Sample:
<ArrayOfIndustry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NiceAPI.Managers"> <Industry> <CompanyAlphaSet>sample string 3</CompanyAlphaSet> <IndustryId>1</IndustryId> <IndustryName>sample string 2</IndustryName> <InheritSectorsFrom>5</InheritSectorsFrom> <LongTitle>sample string 4</LongTitle> </Industry> <Industry> <CompanyAlphaSet>sample string 3</CompanyAlphaSet> <IndustryId>1</IndustryId> <IndustryName>sample string 2</IndustryName> <InheritSectorsFrom>5</InheritSectorsFrom> <LongTitle>sample string 4</LongTitle> </Industry> </ArrayOfIndustry>