Update webinar - Zoho Webinar
Table of Contents
Note: This task is applicable to all services except Zoho Creator.
Overview:
This task is used to update a webinar with the required webinar details in Zoho Webinar.
This task is based on Zoho Webinar API: Update a webinar
Syntax:
<variable> = zoho.webinar.updateWebinar(<portalId>,<webinarKey>,<sysId>,<webinar_json>,<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 webinar will be updated. Note: Portal_Id can be fetched in the following ways.
|
| <webinar_key> | KEY-VALUE | Specifies the unique key identifier of the webinar to be updated. |
| <sys_Id> | NUMBER | Specifies the identifier for a recurring webinar. |
| <webinar_json> | KEY-VALUE | Specifies the content of the webinar details, where each key represents a webinar field (e.g., topic, startTime, duration) and the value represents the corresponding data to update the webinar. |
| <connection> | TEXT | Specifies the link name of the Zoho Webinar connection. Required scope for this connection: ZohoWebinar.webinar.UPDATE |
Example: Updating webinar with webinar details.
The following script updates webinar with the specified webinar details in Zoho webinar.
webinarjson = Map(); webinarjson.put("topic", "update date and time webinar"); webinarjson.put("agenda", "The webinar about the deluge function"); webinarjson.put("presenter", 6751xxx); webinarjson.put("startTime", "Jun 20, 2026 04:00 PM"); webinarjson.put("duration",3600000); webinarjson.put("timezone","Asia/Calcutta"); response = zoho.webinar.updateWebinar(9903XXX,105771xxxx,64096700000013xxxx,webinarjson,"webinar");
where:
responseIs the KEY-VALUE returned by Zoho Webinar. It represents the webinar details.
"9903XX"Is the NUMBER unique portal identifier where the webinar will be updated.
"105771xxxx"Is the unique key identifier of the webinar to be updated.
"64096700000013xxxx"Is the NUMBER that specifies the unique identifier for a recurring webinar.
"webinarjson"Is the KEY-VALUE variable that holds the values of the updated webinar.
"webinar"Is the TEXT that represents the name of the connection.
Sample response
Success response
The success response returned is in the following format.
{
"session": {
"timezone": "Asia/Calcutta",
"creatorZuid": "67517985",
"departmentId": "640967000000025011",
"isDepartmentAdmin": false,
"source": "DRE",
"type": "webinar",
"endTimeMillisec": 1781955000000,
"duration": "3600000",
"recurringType": "0",
"endtimeFormat": "Sat, Jun 20, 2026 05:00 PM",
"sys_id": 640967000000131100,
"startTime": "Jun 20, 2026 04:00 PM IST",
"departmentName": "My Department",
"presenter": 67517985,
"offset": "19800000",
"joinLink": "https://webinar.zoho.com/join?key=1057712230",
"agenda": "The webinar about the deluge function",
"startLink": "https://webinar.zoho.com/meeting/webinar-start?key=1057712230&x-meeting-org=99031443",
"presenterEmail": "test.nm@zoh.com",
"registrationLink": "https://webinar.zoho.com/meeting/register?sessionId=1057712230",
"startTimeMillisec": 1781951400000,
"timeFormat": "Sat, Jun 20, 2026 04:00 PM",
"topic": "update date and time webinar",
"endTime": "Jun 20, 2026 05:00 PM IST",
"meetingKey": "1057712230"
}
}
"session": {
"timezone": "Asia/Calcutta",
"creatorZuid": "67517985",
"departmentId": "640967000000025011",
"isDepartmentAdmin": false,
"source": "DRE",
"type": "webinar",
"endTimeMillisec": 1781955000000,
"duration": "3600000",
"recurringType": "0",
"endtimeFormat": "Sat, Jun 20, 2026 05:00 PM",
"sys_id": 640967000000131100,
"startTime": "Jun 20, 2026 04:00 PM IST",
"departmentName": "My Department",
"presenter": 67517985,
"offset": "19800000",
"joinLink": "https://webinar.zoho.com/join?key=1057712230",
"agenda": "The webinar about the deluge function",
"startLink": "https://webinar.zoho.com/meeting/webinar-start?key=1057712230&x-meeting-org=99031443",
"presenterEmail": "test.nm@zoh.com",
"registrationLink": "https://webinar.zoho.com/meeting/register?sessionId=1057712230",
"startTimeMillisec": 1781951400000,
"timeFormat": "Sat, Jun 20, 2026 04:00 PM",
"topic": "update date and time webinar",
"endTime": "Jun 20, 2026 05:00 PM IST",
"meetingKey": "1057712230"
}
}
Failure response
{
"error": {
"errorCode": 4000,
"message": "The meeting key is invalid.",
"key": "INVALID_MEETING_KEY"
}
}
"error": {
"errorCode": 4000,
"message": "The meeting key is invalid.",
"key": "INVALID_MEETING_KEY"
}
}