Q&A Report API not Giving names who asked questions

Endpoints Which I am using

  1. /past_webinars/{webinar_id}/qa
  2. /report/webinars/{webinar_id}/qa

Both are giving the same response

{‘id’: 854XXXX,
‘uuid’: ‘eOI5XXXXXXXX’,
‘start_time’: ‘2023-02XXXXXXXX,
‘questions’: [{‘name’: ‘Guest’,
‘email’: ‘’,
‘question_details’: [{‘question’: ‘example question’,
‘answer’: ‘example answer’},
{‘question’: ‘example question 2’,
‘answer’: example answer’}

my code

webinar_qa_url= f"{base_url}/past_webinars/{webinar_id}/qa"
webinar_qa_response= requests.get(webinar_qa_url, headers=header)

But I am not getting the names that who has ask what question, but when I have downloaded the report of the webinar manually from dashboard in csv, it has the names and timing of the questions

Can you tell me what I am doing wrong and how I can get the names in the Q&A report?

Hi @smunga
Thanks for reaching out to the Zoom Developer Forum, I am happy to help here!
Let me do some testing on my end and will come back to you with an update shortly

Best,
Elisa

okay, Please let me know is there is some updates which is not refecled on documentation page.

Hi @smunga Thanks for your patience.
After doing some testing on my end I realize that there is a note in our Docs that talks about the “email address display rules”

If you go to that link, you will see that in order for you to get the names and emails via API, users will need to register to the meeting or webinar:
https://marketplace.zoom.us/docs/api-reference/using-zoom-apis/#email-address

Hope this helps,
Elisa

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.