Registration API

To get the list of registration details using webinar key

API : https://webinar.zoho.com/api/v2/{zsoid}/registration/{webinarKey}

Method : GET

OAuth Scope : ZohoWebinar.webinar.READ
 

Path Params :
zsoid - webinar organisation id
webinarKey - webinar id

Query Params :

index - Index of the poll Record
count-  No of poll record
status - 1 ->auto approval
               0 -> manual approval
               2 -> approval denied by organiser              
               3 -> Cancelled done by registrant via mail.
sysId (optional) - Event ID

Request Example

Copiedhttps://meeting.zoho.com/api/v2/12345/registration/344322?status=1&sysId =987653456&index=2&count=3

Response

Copied{
    "registrants": [
        {
            "approvalStatus": "1",
            "registerKey": "9f98cb66818c3552dbc70e273fd498d6c6da5f498d9aa98678729a57dd1f35e1",
            "registeredTimeInMilliSec": 1762321800000,
            "regionName": "TAMIL NADU",
            "registrationCustomizedAnswers": {
            },
            "joinLink": "https://meeting.zoho.in/meeting/register/join?registerKey=9f98cb66818c3552dbc70e273fd498d6c6da5f498d9aa98678729a57dd1f35e1&sessionId=1348280740&uname=Adon+alex",
            "userName": "Adon alex",
            "registeredTime": "Nov 05, 2025 11:20 AM IST",
            "registerId": "1214412000001377016",
            "countryName": "INDIA",
            "registeredTimezone": "Asia/Calcutta",
            "email": "alex@adon.com",
            "status": "Accepted"
        },
        {
            "approvalStatus": "1",
            "registerKey": "d2bebf3c9df06053863ba59e95e97c021b14c79412828a36c45d57441797d516",
            "registeredTimeInMilliSec": 1762321620000,
            "regionName": "TAMIL NADU",
            "registrationCustomizedAnswers": {
            },
            "joinLink": "https://meeting.zoho.in/meeting/register/join?registerKey=d2bebf3c9df06053863ba59e95e97c021b14c79412828a36c45d57441797d516&sessionId=1348280740&uname=sri+ragav",
            "userName": "sri ragav",
            "registeredTime": "Nov 05, 2025 11:17 AM IST",
            "registerId": "1214412000001377001",
            "countryName": "INDIA",
            "registeredTimezone": "Asia/Calcutta",
            "email": "test.nm@zohotest.com",
            "status": "Accepted"
        }
    ],
    "meta": {
        "deniedCount": 0,
        "pendingCount": 0,
        "isAutoApprovalEnabled": true,
        "totalCount": 2,
        "approvedCount": 2
    }
}