Query parameters
- 
    
  The page number in a paginated set of results 
- 
    
  The limit of results to be returned per page 
- 
    
  The firstnames of spot member to include in the result 
- 
    
  The lastnames of spot member to include in the result 
- 
    
  The emails of spot member to include in the result 
- 
    
  Search participants with a specific status Values are Invited,Started,Completed, orUnenrolled.
- 
    
  Search participants with one of theses status Values are Invited,Started,Completed, orUnenrolled.
        GET
    /v1/courses/{courseId}/participants
  
  curl \
 --request GET 'https://openapi.meltingspot.io/v1/courses/{courseId}/participants'
        Response examples (200)
  
  {
  "items": [
    {
      "id": "string",
      "courseId": "string",
      "spotMemberId": "string",
      "spotMemberEmail": "string",
      "spotMemberFirstname": {},
      "spotMemberLastname": {},
      "status": "Invited",
      "invitedAt": "2025-05-04T09:42:00Z",
      "startedAt": "2025-05-04T09:42:00Z",
      "completedAt": "2025-05-04T09:42:00Z",
      "unenrolledAt": "2025-05-04T09:42:00Z",
      "lastActivityAt": "2025-05-04T09:42:00Z",
      "completionRate": 42
    }
  ],
  "total": 42
}