I’m using the GET /report/meetings/{meetingUUID}/participants API to fetch attendance data for completed meetings. However, I’ve noticed a recurring issue in some meetings:
- Some participants are showing
duration: 0
with identicaljoin_time
andleave_time
. - This happens even though the participant was present for a substantial amount of time.
- Interestingly, it seems that if I call the same API about 4-5 days after the meeting, the durations and timestamps are accurate and reflect the actual user activity.
Any guidance would be appreciated, as my requirement needs accurate data within a few hours of the meeting’s completion.
One Example Reference :
{
“id”: “”,
“user_id”: “33555456”,
“name”: “----------”,
“user_email”: “”,
“join_time”: “2025-05-24T12:41:50Z”,
“leave_time”: “2025-05-24T12:41:50Z”,
“duration”: 0,
“attentiveness_score”: “”,
“failover”: false,
“status”: “in_meeting”,
“groupId”: “”,
“customer_key”: “”
},