Invite multiple members as Live participant
Invite multiple members as Live participant
POST
/v1/lives/{liveId}/participants~bulkInvite
curl \
--request POST 'https://openapi.meltingspot.io/v1/lives/{liveId}/participants~bulkInvite' \
--header "Content-Type: application/json" \
--data '{"invitedBySpotMemberId":"string","withEmailNotification":true,"members":{"spotMemberIds":["string"],"emails":["string"]}}'
Request examples
{
"invitedBySpotMemberId": "string",
"withEmailNotification": true,
"members": {
"spotMemberIds": [
"string"
],
"emails": [
"string"
]
}
}
Response examples (200)
[
{
"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
}
}
]