Attendees Report

The following is the API for report of attendees in the webinar.

API : https://webinar.zoho.com/meeting/api/v2/{zsoid}/report/attendees

Method : GET

OAuth Scope : ZohoWebinar.webinar.READ

Path Params :
zsoid - webinar organisation id

Query Params :

index - Index of the attendee Record
count-  No of attendees
webinarKey - webinar id
instanceId (optional) - Event Id 
 

Request Example

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

Response

Copied{
    "meta": {
        "count": 1
    },
    "attendees": [
        {
            "approvalStatus": "1",
            "lastName": "name",
            "registerKey": "4dc7947bb16a84496db5ab064b2215848c5e6571f58b2fd2daaaadd53143d3e7",
            "leftTimeInMillis": 1758632481218,
            "questions": "2",
            "polls": "2",
            "registeredTimeInMillis": 1758632340000,
            "userName": "first name",
            "duration": 128721,
            "firstName": "first",
            "registeredTime": "Sep 23, 2025 06:29 PM IST",
            "registerId": "656011000000290133",
            "joinedTime": "Sep 23, 2025 06:29 PM IST",
            "joinedTimeInMillis": 1758632352497,
            "leftTime": "Sep 23, 2025 06:31 PM IST",
            "countryName": "unknown",
            "email": "firstname@zohotest.com"
        }
    ]
}