Past_meeting participants API returning email

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:

  1. Record a meeting
  2. Have people join the meeting
  3. 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"
        },
        ...
}

Hey @zoom-test,

Yes the user_email is a new field. It should appear it the user was logged in, or if they were registered for the meeting.

The ID could be blank if the user was not signed into Zoom or didn’t register when joining the meeting.

CC @shrijana.g

Thanks,
Tommy

1 Like

Thanks for the response. I see the documentation is updated now too! This will actually help us to remove some API calls since the email is surfaced here. Have a great day!

2 Likes

Happy to hear it will help! :slight_smile:

Thanks, you too!

-Tommy