REST method: GET
URL: https://app.knowledgeowl.com/api/head/article.json
Request
Filtering Results
You may filter results by passing fields like so:
https://app.knowledgeowl.com/api/head/article.json?status=published
This example call will return only articles that are published.
You may create more complex filters like so:
https://app.knowledgeowl.com/api/head/article.json?status[$in][]=published&status[$in][]=review
This example call will return articles that are either set to published or set to needs review.
Sorting Results
To sort the returned articles, you may use the following format:
https://app.knowledgeowl.com/api/head/article.json?sort[status]=-1
The data can be sorted by any available field in ascending (1) or descending (-1) order.