GET api/Industry?page={page}&pagesize={pagesize}&sort={sort}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| pagesize | integer |
Default value is 3 |
|
| sort | string |
Default value is IndustryId |
Body Parameters
None.
Response Information
Resource Description
Collection of Industry| Name | 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>