comments

Read (List) Topic Comments

returns all comments of the topic user has access to

get/api/v2/users/:userId/topics/:topicId/comments

Path parameters

userIdstring required

logged in users id

topicIdstring required

topic id that has comments

Query parameters

orderBy'rating' | 'popularity' | 'date'

how to order comments in result

Response

Returns comments list

Example response

{
  "status": {
    "code": 20000
  },
  "data": {
    "count": 1
  }
}

Changes