GET api/KnowledgeBase/GetRecommendedArticles

Gets recommended articles.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GetKnowledgeBaseArticleResult
NameDescriptionTypeAdditional information
Id

Article id

integer

None.

Name

The name

string

None.

DateLastUpdateUTC

The date when the article was modifed or created

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "Help with api",
    "DateLastUpdateUTC": "2024-04-28T02:03:39.5280153Z"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetKnowledgeBaseArticleResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results">
  <GetKnowledgeBaseArticleResult>
    <DateLastUpdateUTC>2024-04-28T02:03:39.5280153Z</DateLastUpdateUTC>
    <Id>1</Id>
    <Name>Help with api</Name>
  </GetKnowledgeBaseArticleResult>
</ArrayOfGetKnowledgeBaseArticleResult>