Skip to content

RTKConnectedMeetings

Last updated View as Markdown Agent setup

This consists of the methods to facilitate connected meetings

meeting.connectedMeetings.getConnectedMeetings()

get connected meeting state

Kind: instance method of RTKConnectedMeetings

meeting.connectedMeetings.createMeetings(request)

create connected meetings

Kind: instance method of RTKConnectedMeetings

Param Type
request Array.<{title: string}>

meeting.connectedMeetings.updateMeetings(request)

update meeting title

Kind: instance method of RTKConnectedMeetings

Param Type
request Array.<{id: string, title: string}>

meeting.connectedMeetings.deleteMeetings(meetingIds)

delete connected meetings

Kind: instance method of RTKConnectedMeetings

Param Type
meetingIds Array.<string>

meeting.connectedMeetings.moveParticipants(sourceMeetingId, destinationMeetingId, participantIds)

Trigger event to move participants

Kind: instance method of RTKConnectedMeetings

Param Type Description
sourceMeetingId string id of source meeting
destinationMeetingId string id of destination meeting
participantIds Array.<string> list of id of the participants

meeting.connectedMeetings.moveParticipantsWithCustomPreset(sourceMeetingId, destinationMeetingId, participants)

Trigger event to move participants with custom preset

Kind: instance method of RTKConnectedMeetings

Param Type Description
sourceMeetingId string id of source meeting
destinationMeetingId string id of destination meeting
participants Array.<{id: string, presetId: string}>

Was this helpful?