GET api/Markets/GetMarketsByIndustryId/{industryid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| industryid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Markets| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Market | string |
None. |
|
| BitValue | integer |
None. |
|
| Industry | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"Id": 1,
"Market": "sample string 2",
"BitValue": 3,
"Industry": 4
},
{
"Id": 1,
"Market": "sample string 2",
"BitValue": 3,
"Industry": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfMarkets xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NiceAPI.Managers">
<Markets>
<BitValue>3</BitValue>
<Id>1</Id>
<Industry>4</Industry>
<Market>sample string 2</Market>
</Markets>
<Markets>
<BitValue>3</BitValue>
<Id>1</Id>
<Industry>4</Industry>
<Market>sample string 2</Market>
</Markets>
</ArrayOfMarkets>