Invite a member as Live participant
Invite a member as Live participant
        POST
    /v1/lives/{liveId}/participants
  
  curl \
 --request POST 'https://openapi.meltingspot.io/v1/lives/{liveId}/participants' \
 --header "Content-Type: application/json" \
 --data '{"member":"string","invitedBySpotMemberId":"string","withEmailNotification":true}'
        Request examples
  
  {
  "member": "string",
  "invitedBySpotMemberId": "string",
  "withEmailNotification": true
}
        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
  }
}