Delete a Course Lesson
This endpoint deletes a specific lesson with id {lesson_id} for the course identified by {course_id} and under the
section identified by {section_id}.
info
This operation requires the course creator or manager role.
HTTP Request
DELETE /api/v2/course/{course_id}/section/{section_id}/lesson/{lesson_id}/
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| course_id | path | string | true | A unique integer value identifying the course of the lesson |
| section_id | path | string | true | A unique integer value identifying the section of the lesson |
| lesson_id | path | string | true | A unique integer value identifying the lesson |
Example Request
- JavaScript
- Bash
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization: Bearer <token>'
};
fetch('/api/v2/course/{course_id}/section/{section_id}/lesson/{lesson_id}/',
{
method: 'DELETE',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X DELETE /api/v2/course/{course_id}/section/{section_id}/lesson/{lesson_id}/
-H "Authorization: Bearer <token>"
Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 204 | No Content | Response status code | None |