Description
Is this /v2/past_meeting//participants API now returning email by design? I am now seeing that the API returns the email, along with name and id (sometimes ID is missing). Is this a new behavior on the API? It is not documented in the example.
Error
No error
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth
Which Endpoint/s?
https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/pastmeetingparticipants
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Record a meeting
- Have people join the meeting
- Request participant info with the API
Additional context
The response looks like this:
{
"page_count": 1,
"page_size": 300,
"total_records": 131,
"next_page_token": "",
"participants": [
{
"id": "aUser1D",
"name": "The Users Name",
"user_email": "theuser@email.com"
},
...
}