GET api/KnowledgeBase/GetTopArticles?count={count}
Gets top articles.
Request Information
URI Parameters
Name | Description | Type | Additional 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 GetKnowledgeBaseArticleResultName | Description | Type | Additional 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-12-22T03:00:16.2518355Z" } ]
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-12-22T03:00:16.2518355Z</DateLastUpdateUTC> <Id>1</Id> <Name>Help with api</Name> </GetKnowledgeBaseArticleResult> </ArrayOfGetKnowledgeBaseArticleResult>