Get Course Lessons
This endpoint retrieves all lessons (ordered and not paginated) for the course identified by {course_id}
and under the
section identified by {section_id}
.
info
This operation requires the course manager role
HTTP Request
GET /api/v2/course/{course_id}/section/{section_id}/lesson/
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
course_id | path | string | true | A unique integer value identifying the course of the lessons |
section_id | path | string | true | A unique integer value identifying the section of the lessons |
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/course/{course_id}/section/{section_id}/lesson/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/course/{course_id}/section/{section_id}/lesson/ \
-H 'Accept: application/json'
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | list(Course Lesson) |