GET api/market/news/industrytypes

Gets all news industry types. These values are used as part of the search parameters in the news endpoint.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of IndustryDetails objects that includes the industry code and the description

Collection of IndustryDetails
NameDescriptionTypeAdditional information
Code

Industry code

integer

None.

Description

Industry description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Code": 10100000,
    "Description": "Energy"
  },
  {
    "Code": 10102010,
    "Description": "Integrated Oil & Gas"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIndustryDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Market">
  <IndustryDetails>
    <Code>10100000</Code>
    <Description>Energy</Description>
  </IndustryDetails>
  <IndustryDetails>
    <Code>10102010</Code>
    <Description>Integrated Oil &amp; Gas</Description>
  </IndustryDetails>
</ArrayOfIndustryDetails>