Query parameters
-
The page number in a paginated set of results
-
The limit of results to be returned per page
-
Search Course with a specific status
Values are
Draft
orPublished
. -
Search Course which have the following statuses
Values are
Draft
orPublished
. -
Search Course with a specific privacy
Values are
Secret
orPublic
. -
Search Course which have the following privacy
Values are
Secret
orPublic
. -
Search Courses with a specific module name
-
Search Courses that contains this in the module name
GET
/v1/courses
curl \
--request GET 'https://openapi.meltingspot.io/v1/courses'
Response examples (200)
{
"items": [
{
"id": "string",
"title": "string",
"description": "string",
"privacy": "Secret",
"status": "Draft",
"navigationMode": "Flexible",
"moduleName": "string"
}
],
"total": 42
}