Skip to main content

Search Courses

This endpoint performs courses search only for courses that has privacy different from secret or when privacy is secret the user must be at least invited to the course.

info

This operation requires authentication only if content_availability community option is false.

HTTP Request

GET /api/v2/course/search/

Parameters

NameInTypeRequiredDescription
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results
searchquerystringfalseA search term (search inside name and description)
categoriesquerylist(integer)falseList of id of Category
statusesquerylist(string)¦stringfalseFilter by join_status.
The default value: [] means that it will not filter by any status
orderingquerystringfalseThe ordering of the courses; use - for order desc.
Default to -id

Example Request


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

fetch('/api/v2/course/search/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
» countintegerfalsenoneTotal results count
» nextstring(uri)¦nullfalsenoneNext page url
» previousstring(uri)¦nullfalsenonePrevious page url
» resultslist(Course Minimal)falsenoneList of results