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 DraftorPublished.
- 
    
  Search Course which have the following statuses Values are DraftorPublished.
- 
    
  Search Course with a specific privacy Values are SecretorPublic.
- 
    
  Search Course which have the following privacy Values are SecretorPublic.
- 
    
  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
}