REST method: GET
URL: https://app.knowledgeowl.com/api/head/reader.json
Required fields: project_id={knowledge base ID}
You may use this endpoint to retrieve a list of readers for your account.
Filtering Results
You may filter results by passing fields like so:
https://app.knowledgeowl.com/api/head/reader.json?status=active
This example call will return only readers that haven't been deleted.
Limiting Returned Fields
To reduce the amount of information returned, you may include which fields should be returned like so:
https://app.knowledgeowl.com/api/head/reader.json?_fields[]=status
This example will only return data for the status field of the reader.
Sorting Results
To sort the returned reader groups, you may use the following format:
https://app.knowledgeowl.com/api/head/reader.json?sort[status]=-1
The data can be sorted by any available field in ascending (1) or descending (-1) order.
Limit Results
To limit the number of returned results, use the following format:
https://app.knowledgeowl.com/api/head/reader.json?limit=5