GET api/market/news/{newsid}

Gets the news article

Request Information

URI Parameters

NameDescriptionTypeAdditional information
newsid

News ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns news article contents

News
NameDescriptionTypeAdditional information
ID

News ID

integer

None.

PublishDateTime

News publish date and time

date

None.

Headline

News headline

string

None.

SecurityCode

Security code related to the news

string

None.

IndustryCode

Industry code related to the news

integer

None.

Contents

News contents. This will only be populated when calling the news contents endpoint

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "PublishDateTime": "2024-09-29T10:00:00",
  "Headline": "Norton up to 90.9% in target Bullabulling",
  "SecurityCode": "NGF",
  "IndustryCode": 15104000,
  "Contents": "News contents. Only populated when calling the news contents endpoint and not the news search endpoint."
}

application/xml, text/xml

Sample:
<News xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Market">
  <Contents>News contents. Only populated when calling the news contents endpoint and not the news search endpoint.</Contents>
  <Headline>Norton up to 90.9% in target Bullabulling</Headline>
  <ID>1</ID>
  <IndustryCode>15104000</IndustryCode>
  <PublishDateTime>2024-09-29T10:00:00</PublishDateTime>
  <SecurityCode>NGF</SecurityCode>
</News>