Polls Report

The following is the API to get the report of polls in the webinar.

API : https://webinar.zoho.com/meeting/api/v2/{zsoid}/report/poll
Method : GET

OAuth Scope : ZohoWebinar.webinar.READ

Path Params :
zsoid - webinar organisation id

Query Params :
index - Index of the poll Record
count-  No of poll record
webinarKey - webinar id
instanceId (optional) - Event Id 
category (optional) -  1 -> Star Rating ; 2 - >Single choice ; 3 -> Multiple choice         
                          
                   
 

Request Example

Copiedhttps://webinar.zoho.com/meeting/api/v2/81861066/report/poll?webinarKey=1095753484&index=26&count=3&category=1

Response

Copied{
    "meta": {
        "count": 28
    },
    "pollData": [
        {
            "question": "create",
            "totalVotes": "0",
            "pollId": "576315000000070001",
            "percentage": 0,
            "options": [
                {
                    "percentage": 0,
                    "count": "0",
                    "index": "1",
                    "id": "576315000000070003",
                    "text": "adsfsad"
                },
                {
                    "percentage": 0,
                    "count": "0",
                    "index": "3",
                    "id": "576315000000070005",
                    "text": "sfsdf"
                }
            ],
            "type": "1",
            "category": "3"
        },
        {
            "question": "Single choice poll",
            "totalVotes": "0",
            "pollId": "576315000000076154",
            "percentage": 0,
            "options": [
                {
                    "percentage": 0,
                    "count": "0",
                    "index": "1",
                    "id": "576315000000076156",
                    "text": "one "
                },
                {
                    "percentage": 0,
                    "count": "0",
                    "index": "2",
                    "id": "576315000000076158",
                    "text": "two"
                }
            ],
            "type": "1",
            "category": "2"
        },
        {
            "minLabel": "Average",
            "question": "Star Rating",
            "totalStars": "5",
            "starAverage": 0,
            "totalVotes": "0",
            "pollId": "576315000000076166",
            "percentage": 0,
            "stars": [
            ],
            "type": "1",
            "category": "1",
            "maxLabel": "Very good"
        }
    ]
}

Invalid Key Response

Copied{
  "error": {
    "errorCode": 4000,
    "message": "The meeting key is invalid.",
    "key": "INVALID_MEETING_KEY"
  }
}