Question Reports
The following is the API used to get the questions report using the webinar key.
API : https://webinar.zoho.com/api/meeting/v2/{zsoid}/report/questions
Method : GET
OAuth Scope : ZohoWebinar.webinar.READ
Path Params :
zsoid - webinar organisation id
Query Params :
index - Index of the question Record
count- No of questions
webinarKey - webinar id
instanceId (optional) - Event Id
Request Example
Copiedhttps://webinar.zoho.com/meeting/api/v2/81861066/report/questions?webinarKey=1095753484&index=2&count=3Response
Copied{
"meta": {
"count": 2
},
"questions": [
{
"questionId": "656011000000290144",
"questionAssignedToId": "656011000000290123",
"question": "attendee",
"questionAssignedById": "656011000000290123",
"answers": [
{
"mode": "0",
"answerId": "656011000000290188",
"answeredBy": "kavitha.vk+m79",
"answer": "sdfsd",
"answeredById": "656011000000290123",
"answeredTime": "1758632446627"
}
],
"questionAssignedTo": "kavitha.vk+m79",
"questionedById": "656011000000290138",
"questionAssignedBy": "kavitha.vk+m79",
"questionTime": "1758632374125",
"projectionStatus": "NOT_PROJECTED",
"registerId": "656011000000290133",
"questionerName": "first name",
"isAnswered": true,
"questionedBy": "firstname@zohotest.com",
"questionType": "private"
},
{
"questionId": "656011000000290146",
"questionAssignedToId": "656011000000290123",
"question": "attendde 2",
"questionAssignedById": "656011000000290123",
"answers": [
{
"mode": "0",
"answerId": "656011000000290186",
"answeredBy": "kavitha.vk+m79",
"answer": "sdfsdf",
"answeredById": "656011000000290123",
"answeredTime": "1758632440209"
}
],
"questionAssignedTo": "kavitha.vk+m79",
"questionedById": "656011000000290138",
"questionAssignedBy": "kavitha.vk+m79",
"questionTime": "1758632378327",
"questionPriorityBy": "kavitha.vk+m79",
"questionPriorityById": "656011000000290123",
"projectionStatus": "NOT_PROJECTED",
"registerId": "656011000000290133",
"questionerName": "first name",
"isAnswered": true,
"questionedBy": "firstname@zohotest.com",
"questionType": "public",
"questionPriority": "3"
}
]
}