I am using component view mode. How can I check when the host ends the meeting? What events can I trigger?
Thank you in advance.
Best regards,
John
I am using component view mode. How can I check when the host ends the meeting? What events can I trigger?
Thank you in advance.
Best regards,
John
Thank you for your question! To check when a meeting has ended, you can listen to the meeting ended Webhook event. The payload will contain information about the meeting.
https://developers.zoom.us/docs/meeting-sdk/webhooks/#operation/meeting.ended
Here is an example payload for your reference:
{
"event": "meeting.ended",
"event_ts": 1626230691572,
"payload": {
"account_id": "AAAAAABBBB",
"operator": "admin@example.com",
"operator_id": "z8yCxjabcdEFGHfp8uQ",
"operation": "single",
"object": {
"id": "1234567890",
"uuid": "4444AAAiAAAAAiAiAiiAii==",
"host_id": "x1yCzABCDEfg23HiJKl4mN",
"topic": "My Meeting",
"type": 3,
"start_time": "2021-07-13T21:44:51Z",
"timezone": "America/Los_Angeles",
"duration": 60,
"end_time": "2021-07-13T23:00:51Z"
}
}
Hi @donte.zoom
Best regards,
John
To clarify, are you asking if it is possible to programmatically return to Gallery view mode with the Web SDK ?
Hi @donte.zoom
Best regards
@thinh.pv and @tuanthinhit ,
Currently, there is no API or SDK function for programmatically returning Gallery View mode.
Let us know if you have any questions about this.