List Meeting API does not retrieve participant data

We need to retrieve meeting-related information for participants from the meeting API, but only the information for the host is returned. The fact that the API returns “participants” = 2 implies that meeting information for the participants should also be retrieved, but why can’t we get the information for the participants?
Steps to Reproduce:
1.A host and a participant,close the meeting.
2.API Request:
https://api.zoom.us/v2/metrics/meetings?type=past&from=2024-05-03&to=2024-05-03&page_size=10
Response:
{
“from”: “2024-05-03”,
“to”: “2024-05-03”,
“page_count”: 1,
“page_size”: 10,
“total_records”: 1,
“next_page_token”: “”,
“meetings”: [
{
“uuid”: “Sz1KlsGZSVeBgVf86RDLTg==”,
“id”: 96723394537,
“topic”: “My Meeting-0503”,
“host”: “Bruce Wang”,
“email”: dongzhe.wang@avepoint.com,
“user_type”: “Licensed”,
“start_time”: “2024-05-03T00:55:09Z”,
“end_time”: “2024-05-03T00:58:04Z”,
“duration”: “02:55”,
“participants”: 2,
“has_pstn”: false,
“has_archiving”: false,
“has_voip”: true,
“has_3rd_party_audio”: false,
“has_video”: false,
“has_screen_share”: false,
“has_recording”: false,
“has_sip”: false,
“audio_quality”: “good”,
“has_manual_captions”: false,
“has_automated_captions”: false,
“has_meeting_summary”: false
}
]
}

“participants”= 2,
But only one piece of data is actually returned

2 Likes