Query parameters
- 
    
  The page number in a paginated set of results 
- 
    
  The limit of results to be returned per page 
- 
    
  Search participants with a specific firstname 
- 
    
  Search participants that contains this in the firstname 
- 
    
  Search participants with a specific lastname 
- 
    
  Search participants that contains this in the lastname 
- 
    
  Search participants with a specific email 
- 
    
  Search participants that contains this in the email 
- 
    
  Search participants with a specific type Values are Participant,Speaker, orHost.
- 
    
  Search participants with one of theses types Values are Participant,Speaker, orHost.
- 
    
  Search participants with a specific status Values are Accepted,Invited, orDeclined.
- 
    
  Search participants with one of theses status Values are Accepted,Invited, orDeclined.
- 
    
  Search for participants who replayed the Live 
- 
    
  Search for participants who participated to the Live 
curl \
 --request GET 'https://openapi.meltingspot.io/v1/lives/{liveId}/participants'{
  "items": [
    {
      "id": "string",
      "liveId": "string",
      "spotMemberId": "string",
      "spotMemberEmail": "string",
      "spotMemberFirstname": {},
      "spotMemberLastname": {},
      "status": "Accepted",
      "type": "Participant",
      "invitedAt": "2025-05-04T09:42:00Z",
      "registeredAt": "2025-05-04T09:42:00Z",
      "isHighlighted": true,
      "metrics": {
        "viewTime": 42,
        "hasReplayed": true,
        "hasParticipated": true
      }
    }
  ],
  "total": 42
}