Get registration details - Zoho Webinar
Table of Contents
Note: This task is applicable to all services except Zoho Creator.
Overview:
This task is used to get registration details in Zoho Webinar.
This task is based on the Zoho Webinar API: Registration
Syntax:
<variable> = zoho.webinar.getRegistrationDetails(<portal_id>, <webinar_key>, <sys_Id>, <status>, <index>, <count>, <connection>);
where:
| Params | Data type | Description |
| <variable> | KEY_VALUE | Specifies the variable that will hold the response returned by Zoho Webinar. |
| <portal_Id> | NUMBER | Specifies the unique portal identifier where the registration details of the webinar will be fetched from. Note: Portal_Id can be fetched in the following ways.
|
| <webinar_key> | NUMBER | Specifies the unique key identifier of the webinar registration details. |
| <sys_Id> | NUMBER | Specifies the recurring webinar ID. |
| <status> | INTEGER | Specifies the registration status of the webinar. Supported registration status: |
| <index> | INTEGER | Specifies the pagination start index. Default: 1. |
| <count> | INTEGER | Specifies the number of registration details to fetch. |
| <connection> | TEXT | Specifies the link name of the Zoho Webinar connection. Required scope for this API connection: ZohoWebinar.registration.READ |
Example:
rsponse = zoho.webinar.getRegistrationDetails(86367739,1049243583,645551000000038094,1,1,20,"webinar");
where:
response8636773910492435836455510000000380941120"webinar"Sample response
Success response
The success response returned is in the following format.
"registrants": [
{
"approvalStatus": "1",
"registerKey": "e7d91dce6427c02f1f1d2b83e962b1dc3b09ab05b868a211ac9b8b5feda8b5e9",
"registeredTimeInMilliSec": 1765350840000,
"regionName": "",
"registrationCustomizedAnswers": {},
"joinLink": "https://webinar.zoho.com/meeting/register/join?registerKey=e7d91dce6427c02f1f1d2b83e962b1dc3b09ab05b868a211ac9b8b5feda8b5e9&sessionId=1049243583&uname=prahana+prahana+test",
"userName": "prahana prahana test",
"registeredTime": "Dec 10, 2025 12:44 PM IST",
"registerId": "645551000000038166",
"countryName": "unknown",
"registeredTimezone": "Asia/Calcutta",
"email": "prahana.m+11@zohotest.com",
"status": "Accepted"
}
],
"meta": {
"deniedCount": 0,
"pendingCount": 0,
"isAutoApprovalEnabled": true,
"totalCount": 3,
"approvedCount": 3
}
}
Failure response
"error": {
"errorCode": 4000,
"message": "The meeting key is invalid.",
"key": "INVALID_MEETING_KEY"
}
}