Skip to main content

Get Course Comments

This endpoint retrieves paginated comments for a specific course identified by {course_id}.
It will group and order the results by lesson; nested comments will be return on the field replies and the field extras will contain more infos to group the comments in the frontend.
Look at Course Comment.

info

This operation requires the course manager role

HTTP Request

GET /api/v2/course/{course_id}/comment/

Parameters

NameInTypeRequiredDescription
course_idpathstringtrueA unique integer value identifying the course of the comments
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/course/{course_id}/comment/',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codelist(Course Comment)