Download summary - Zoho Webinar
Table of Contents
Note: This task is applicable to all services except Zoho Creator.
Overview:
This task is used to download a recording summary using a webinar key in Zoho Webinar.
Syntax:
<variable> = zoho.webinar.downloadSummary(<portal_Id>,<webinar_Key>,<connection>);
where:
| Params | Data type | Description |
| <variable> | LIST | 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 created.
|
| <webinar_Key> | NUMBER | Specifies the unique key identifier where the webinar summary details will be fetched from. |
| <connection> | TEXT | Specifies the link name of the Zoho Webinar connection. Required scope for this connection: ZohoFiles.files.READ, ZohoWebinar.meetinguds.READ Note: This feature is supported only through zoho webinar integration with Zia, powered by OpenAI. |
Example: Downloading webinar recording summary with webinar details.
The following script downloads webinar recording summary with the specified webinar details in Zoho webinar.
response = zoho.webinar.downloadSummary(25423, 2354235, webinar);
where:
response
Is the LIST returned by Zoho Webinar. It represents the recording webinar summary details.
"25423"
Is the NUMBER of the unique portal identifier of where recording webinar summary details will be fetched.
2354235
Is the NUMBER of the unique key identifier of where recording webinar summary details will be fetched.
webinar
Is the TEXT that represents the name of the connection.
Sample response
Success response
[
{
"recordingId": "640967000000111009",
"content": "1. Meeting called to order at 10:00 AM by [Name of Chairperson]\n2. Roll call of members present: [List of names]\n3. Agenda items discussed:\n - [Item 1]\n - [Item 2]\n - [Item 3]\n4. Decisions made:\n - [Decision 1]\n - [Decision 2]\n - [Decision 3]\n5. Next steps:\n - [Action item 1]\n - [Action item 2]\n - [Action item 3]\n6. Meeting adjourned at 11:00 AM.\n"
}
]
{
"recordingId": "640967000000111009",
"content": "1. Meeting called to order at 10:00 AM by [Name of Chairperson]\n2. Roll call of members present: [List of names]\n3. Agenda items discussed:\n - [Item 1]\n - [Item 2]\n - [Item 3]\n4. Decisions made:\n - [Decision 1]\n - [Decision 2]\n - [Decision 3]\n5. Next steps:\n - [Action item 1]\n - [Action item 2]\n - [Action item 3]\n6. Meeting adjourned at 11:00 AM.\n"
}
]