GET api/Sector/GetSectorGroups/{industryid}
Returns the count of the sectors under the groupname based upon industry
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| industryid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SectorGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| Group | string |
None. |
|
| SectorCount | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"Group": "sample string 1",
"SectorCount": 2
},
{
"Group": "sample string 1",
"SectorCount": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfSectorGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NiceAPI.Managers">
<SectorGroup>
<Group>sample string 1</Group>
<SectorCount>2</SectorCount>
</SectorGroup>
<SectorGroup>
<Group>sample string 1</Group>
<SectorCount>2</SectorCount>
</SectorGroup>
</ArrayOfSectorGroup>