Hey Tommy,
I have anonymized the response as this is a forum and not private. This was retrieved thru the API call via Zooms website: https://marketplace.zoom.us/docs/api-reference/zoom-api/reports/reportmeetingparticipants
Using the call :
GET https://api.zoom.us/v2/report/meetings/zGmDzXivROqqLWJQ/NaZew==/participants?page_size=30
I see one more oddity in the User_id below which I’m not using in any of my code but figured I’d highlight it below
{
“next_page_token”: “”,
“page_count”: 1,
“page_size”: 30,
“participants”: [
{
“attentiveness_score”: “100.0%”,
“duration”: 2817,
“id”: “DJhbxRxxQdOagtgeg-uymA”,
“join_time”: “2019-11-13T17:32:56Z”,
“leave_time”: “2019-11-13T18:19:53Z”,
“name”: “FIRSTNAME1 LASTNAME1”,
“user_email”: “EMAIL1”,
"user_id": "167782402019-11-13 17:32:56:912"
},
{
“attentiveness_score”: “100.0%”,
"duration": -335,
“id”: “4FBlakE2THyyovoclhzLLw”,
“join_time”: “2019-11-13T17:38:32Z”,
“leave_time”: “2019-11-13T17:32:57Z”,
“name”: " FIRSTNAME2 LASTNAME2",
“user_email”: " EMAIL2",
“user_id”: “33555456”
}
],
“total_records”: 2
}
Here is the Participant Attentiveness Score Call issue (highlighted below) and response:
GET https://api.zoom.us/v2/report/meetings/vdakxMRoQkSR67IcOynb8g==/participants?page_size=30
{
“next_page_token”: “”,
“page_count”: 1,
“page_size”: 30,
“participants”: [
{
“attentiveness_score”: “100.0%”,
“duration”: 3193,
“id”: “GQ8Vz_CrTdG9yIG6G9CdOw”,
“join_time”: “2019-09-26T01:28:47Z”,
“leave_time”: “2019-09-26T02:22:00Z”,
“name”: “Name3”,
“user_email”: “”,
“user_id”: “16778240”
},
{
“attentiveness_score”: “60.97%”,
“duration”: 3167,
“id”: “JXD7jHUaRVq5Gym1UX2qCg”,
“join_time”: “2019-09-26T01:29:12Z”,
“leave_time”: “2019-09-26T02:21:59Z”,
“name”: " Name 4",
“user_email”: “”,
“user_id”: “16779264”
},
{
“attentiveness_score”: “72.13%”,
“duration”: 3086,
“id”: “HRKr9RIEQQGp1efwn6m7NA”,
“join_time”: “2019-09-26T01:30:34Z”,
“leave_time”: “2019-09-26T02:22:00Z”,
“name”: " Name 5",
“user_email”: “”,
“user_id”: “16780288”
},
{
"attentiveness_score": "-54.08%",
“duration”: 2866,
“id”: “6xRgc23gSciFSffomGlc0A”,
“join_time”: “2019-09-26T01:34:21Z”,
“leave_time”: “2019-09-26T02:22:07Z”,
“name”: " Name 6",
“user_email”: “”,
“user_id”: “16781312”
}
],
“total_records”: 4
}
Thanks,
Sean