The current video SDK for the web doesn’t have an event of the meeting ended by the host. Webhook is there for meeting ended by the host, but I want an event in all participant’s browsers, so that when the host ends a meeting, other participants can get an event and we can change the view for all other participants.
Hey @Parth
Thanks for your feedback.
Could you try to listen to the connection-change
event, the event payload will be as the following if the session is ended by the host?
{
state:'Closed',
reason: 'ended by host'
}
Thanks
Vic
1 Like