Invite multiple members as Live speaker
Invite multiple members as Live speaker
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
. -
Spot members to invite as Live speaker
POST
/v1/lives/{liveId}/speakers~bulkInvite
curl \
--request POST 'https://openapi.meltingspot.io/v1/lives/{liveId}/speakers~bulkInvite' \
--header "Content-Type: application/json" \
--data '{"invitedBySpotMemberId":"string","highlighted":false,"grantHostRights":false,"withEmailNotification":false,"spotMemberIds":["string"]}'
Request examples
{
"invitedBySpotMemberId": "string",
"highlighted": false,
"grantHostRights": false,
"withEmailNotification": false,
"spotMemberIds": [
"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
}
}
]