Body
      
    Required
 
    
  
  
- 
    
  The Spot member ID on the initiative of the invitation 
- 
    
  Set to true to highlight the Speaker. Default value is false.
- 
    
  Set to true to grant Host rights to the Speaker. Default value is false.
- 
    
  Set to true to send notification mail to each invited members Default value is false.
        POST
    /v1/lives/{liveId}/speakers
  
  curl \
 --request POST 'https://openapi.meltingspot.io/v1/lives/{liveId}/speakers' \
 --header "Content-Type: application/json" \
 --data '{"member":{"email":"string","firstName":"string","lastName":"string","title":"string","biography":"string"},"invitedBySpotMemberId":"string","highlighted":false,"grantHostRights":false,"withEmailNotification":false}'
        Request examples
  
  {
  "member": {
    "email": "string",
    "firstName": "string",
    "lastName": "string",
    "title": "string",
    "biography": "string"
  },
  "invitedBySpotMemberId": "string",
  "highlighted": false,
  "grantHostRights": false,
  "withEmailNotification": false
}
        Response examples (201)
  
  {
  "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
  }
}