Meeting Participant Report User Duration Total

Does anyone know if the participant object accounts for duplicate user sessions? For example:

User joins meeting
User is dropped from meeting via network issue or something unexpected
User re-joins the meeting

Specifically, when the /report/meetings/{meetingId}/participants endpoint is called, will the participant object contain the total duration value of each meeting interaction? Or does the response only return the first participants object (along with the first duration total).

I am trying to account for when a user would get dropped from the meeting, rejoin, but the api would still return an accurate participant duration time. Currently, I am not getting the total duration correctly.

Hi @skuchinski,

If the participant joins the meeting while being logged in it will show the same participant, otherwise the API will return a new participant. The total duration returned is the value of each meeting participant interaction.

Thanks