function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RoopeRoope 

List of Articles through REST API

Hi,

 

Using http GET method, is it possible to ask list of articles through REST API?

 

E.g. call: https://emea.salesforce.com/services/data/v27.0/knowledgeManagement/articles with correct access token.

 

Response:

article=/services/data/v27.0/knowledgeManagement/articles/<ArticleID>

articleVersions=/services/data/v27.0/knowledgeManagement/articleVersions

knowledgeManagement=/services/data/v27.0/knowledgeManagement

 

Or if I want to get specific Article, from where I do get the Article Id?

 

/Roope

BinayakBinayak

We can write a REST class (@RestResource) and define a @httpget method in it,query all the articles (or what ever your filter criteria may be) and return.