GET api/News_Item

Retrieves the NEWS items list for current provider

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "body": "sample string 1",
    "date_created": "2024-03-18T00:12:40.1830369-04:00",
    "date_last_modified": "2024-03-18T00:12:40.1830369-04:00",
    "sub_id": 3,
    "title": "sample string 4",
    "views": 5,
    "ProviderId": 6,
    "id": 1
  },
  {
    "body": "sample string 1",
    "date_created": "2024-03-18T00:12:40.1830369-04:00",
    "date_last_modified": "2024-03-18T00:12:40.1830369-04:00",
    "sub_id": 3,
    "title": "sample string 4",
    "views": 5,
    "ProviderId": 6,
    "id": 1
  },
  {
    "body": "sample string 1",
    "date_created": "2024-03-18T00:12:40.1830369-04:00",
    "date_last_modified": "2024-03-18T00:12:40.1830369-04:00",
    "sub_id": 3,
    "title": "sample string 4",
    "views": 5,
    "ProviderId": 6,
    "id": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfnews_item xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.KnowledgeBase">
  <news_item>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <ProviderId>6</ProviderId>
    <body>sample string 1</body>
    <date_created>2024-03-18T00:12:40.1830369-04:00</date_created>
    <date_last_modified>2024-03-18T00:12:40.1830369-04:00</date_last_modified>
    <sub_id>3</sub_id>
    <title>sample string 4</title>
    <views>5</views>
  </news_item>
  <news_item>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <ProviderId>6</ProviderId>
    <body>sample string 1</body>
    <date_created>2024-03-18T00:12:40.1830369-04:00</date_created>
    <date_last_modified>2024-03-18T00:12:40.1830369-04:00</date_last_modified>
    <sub_id>3</sub_id>
    <title>sample string 4</title>
    <views>5</views>
  </news_item>
  <news_item>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <ProviderId>6</ProviderId>
    <body>sample string 1</body>
    <date_created>2024-03-18T00:12:40.1830369-04:00</date_created>
    <date_last_modified>2024-03-18T00:12:40.1830369-04:00</date_last_modified>
    <sub_id>3</sub_id>
    <title>sample string 4</title>
    <views>5</views>
  </news_item>
</ArrayOfnews_item>