Get Course Suggestion
This endpoint retrieves a list of suggested courses for the authenticated user.
info
This operation requires authentication.
HTTP Request
GET /api/v2/suggestion/course/
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
limit | query | integer | false | Number of results to return per page |
offset | query | integer | false | The initial index from which to return the results |
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json'
};
fetch('/api/v2/suggestion/course/',
{
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/suggestion/course/ \
-H 'Accept: application/json'