OnCollaborateChangeEvent: { action: string; collaborateUUID?: string; timestamp: number }

Usage:

zoomSdk.onCollaborateChange((event) => {
console.log(event)
});

Console log:

{
{"action": "start", "collaborateUUID": "xxxxx", timestamp: 1646302251} //the User who call collaborate API:join
{"action": "end", "timestamp": 1646302251} //the User who call collaborate API:end
{"action": "leave", "timestamp": 1646302251} //the User who call collaborate API:join
{"action": "join", "timestamp": 1646302251} //the User who call collaborate API:leave
}

Type declaration

  • action: string
  • Optional collaborateUUID?: string
  • timestamp: number

Generated using TypeDoc