Hi We are integrating Zoom conferencing into our system. We are using Webhook events to update our database parts. I have multiple questions regarding this.
- When Participant joined , payload doesn’t have email id.
- If the user belong to same account payload contains zoomId. But sometimes that is also coming as empty string
here is an example
{
"event": "meeting.participant_joined",
"payload": {
"account_id": "U9D7NqiISd-cfmIMEFcx-A",
"object": {
"duration": 60,
"start_time": "2019-07-25T05:47:03Z",
"timezone": "UTC",
"topic": "22",
"id": "200262191",
"type": 2,
"uuid": "8v1eR64ORn2qwy4VGQkdOA==",
"host_id": "_oLLD19CTTSTYAOrHCN9MA",
"participant ": {
"user_id ": "16779264",
"user_name ": "OnePlus 5",
"id": "",
"join_time ": "2019 - 07 - 25 T05: 48: 33 Z"
}
}
}
}
In this particular case how to know which user joined to that meeting?
- When a user who is not part of the same account joined into conference , payload doesn’t contain email id. how to know which user joined into conference?
Any help is much appreciated.