Logo
Zoom Public API Documentation

List past meetings' Q&A

GET {{baseUrl}}/past_meetings/:meetingId/qa

The question & answer (Q&A) feature for Zoom Meetings lets attendees ask questions during a meeting and lets the other attendees answer those questions.

List Q&A of a specific meeting.

Prerequisites:

Scopes: meeting:read:admin,meeting:read

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "id": "<long>", "questions": [ { "email": "<string>", "name": "<string>", "question_details": [ { "answer": "<string>", "question": "<string>" }, { "answer": "<string>", "question": "<string>" } ] }, { "email": "<string>", "name": "<string>", "question_details": [ { "answer": "<string>", "question": "<string>" }, { "answer": "<string>", "question": "<string>" } ] } ], "start_time": "<dateTime>", "uuid": "<string>" }



Curl
curl -X GET 'https://api.zoom.us/v2/past_meetings/:meetingId/qa' -H 'Accept: application/json'

ENDPOINTS