GET api/KnowledgeBase/GetTopArticles?count={count}

Gets top articles.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
count

The maximum number of articles that could be returned. The default value is 20

integer

Default value is 20

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-27T02:02:18.032589Z"
  }
]

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-27T02:02:18.032589Z</DateLastUpdateUTC>
    <Id>1</Id>
    <Name>Help with api</Name>
  </GetKnowledgeBaseArticleResult>
</ArrayOfGetKnowledgeBaseArticleResult>