Update Course
This endpoint updates a specific course.
info
This operation requires the course manager role.
HTTP Request
PUT /api/v2/course/{id}/
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | A unique integer value identifying this course |
body | body | Course | true | The request body (course params) |
Example Body Parameters
- JSON
{
"name": "string",
"description": "string",
"type": "string",
"privacy": "string",
"image_original": "string",
"categories": [integer]
}
Example Request
- JavaScript
- Bash
const inputBody = '{
"name": "string",
"description": "string",
"type": "string",
"privacy": "string",
"image_original": "string",
"categories": [integer]
}';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/course/{id}/',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X PUT /api/v2/course/{id}/ \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json'
-H 'Authorization: Bearer {access_token}'
--DATA '{body}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | Course |