[Component View] How do I know when the meeting is over?

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

@tuanthinhit,

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.

End 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

  • Thank you for your reply. Let me check.
  • And i have a question. Let’s say when I’m in Gallery View. Then I turned on the Share screen. then it switches to Ribbon view with screen sharing. Is there a way for me to return to Gallery view mode when I disable screen sharing?
    Thank you in advance.

Best regards,
John

@tuanthinhit ,

To clarify, are you asking if it is possible to programmatically return to Gallery view mode with the Web SDK ?

Hi @donte.zoom

  • Yep. I want to how to return Gallery View mode on the Components View meeetings sdk web.

Best regards

Hi @donte.zoom

  • Do you have any updates on this?

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.