# Get Qna Data API ## Get Qna List - get qna list - get qna details - get suggested articles | requests | info | | :---: | :--- | | query | `QnaList` | | Authorization | optional | | desc | return a paginated object; user specific meta will be none if Authorization is not provided | payload: | key | type | remarks | | :---: | :---: | :---: | | alias | String | post alias, if provided, other param will be not handled. optional | | assignment | String | category alias, optional | | tag | [String] | tag alias, optional | | contentType | String | content_type enum, optional | | coachAlias | String | filter by coach alias, optional | | start | Integer | pagination, default = 0 | | offset | Integet | pagination, default = 20 | [sandbox](https://api.kossie.com.hk/sandbox/#query=query%20{%0A%20%20QnaList%20{%0A%20%20%20%20count%0A%20%20%20%20next%0A%20%20%20%20previous%0A%20%20%20%20results%20{%0A%20%20%20%20%20%20id%0A%20%20%20%20}%0A%20%20}%0A}) ## Get Qna Record - return qna asked by users with qnaorder status | requests | info | | :---: | :--- | | query | `QnaRecord` | | Authorization | required | | desc | return a paginated object | payload: | key | type | remarks | | :---: | :---: | :---: | | start | Integer | pagination, default = 0 | | offset | Integet | pagination, default = 20 | [sandbox](https://api.kossie.com.hk/sandbox/#query=query%20%7B%0A%09QnaRecord%20%7B%0A%09%20%20count%0A%09%20%20next%0A%09%20%20previous%0A%20%20%20%20results%20%7B%0A%20%20%20%20%20%20id%0A%20%20%20%20%7D%0A%09%7D%0A%7D) ## Get Bookmark Articles - return qna/editorial bookmark by user | requests | info | | :---: | :--- | | query | `Bookmark` | | Authorization | required | | desc | return a paginated object | payload: | key | type | remarks | | :---: | :---: | :---: | | assignment | String | filter by category alias, optional | | start | Integer | pagination, default = 0 | | offset | Integet | pagination, default = 20 | [sandbox](https://api.kossie.com.hk/sandbox/#query=query%20%7B%0A%09Bookmark%20%7B%0A%09%20%20count%0A%09%20%20next%0A%09%20%20previous%0A%20%20%20%20results%20%7B%0A%20%20%20%20%20%20viewCount%0A%20%20%20%20%20%20qna%20%7B%0A%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%09%7D%0A%7D)