Readonly
meeting:infoFired when meeting information has changed for the current meeting.
Available since 1.1.0
app.onReady().then(() => {
app.listen()
.then(() => {
app.on("meeting:infoChanged", (meeting) => {
console.log("Meeting information changed. New meeting info:", meeting);
})
})
.catch((reason) => {
console.error("listen: fail reason=" + webex.Application.ErrorCodes[reason]);
});
});
Readonly
meeting:roleFired when the role for the current participant changes.
Available since 1.1.0
app.onReady().then(() => {
app.listen()
.then(() => {
app.on("meeting:roleChanged", (assignedRoles) => {
console.log("Meeting role changed for user. New roles:", assignedRoles);
})
})
.catch((reason) => {
console.error("listen: fail reason=" + webex.Application.ErrorCodes[reason]);
});
});
assignedRoles
object is an array of strings that indicate the new role(s) assigned to the current user. Possible values are
PARTICIPANT
GUEST
HOST
COHOST
PANELIST
PRESENTER
Holds meeting information obtained from app.context.getMeeting()
Webex Embedded Apps meeting instance.
Example