Endpoints Which I am using
- /past_webinars/{webinar_id}/qa
- /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?