Download transcript - Zoho Webinar
Table of Contents
Note: This task is applicable to all services except Zoho Creator.
Overview:
This task is used to download the recording transcript using webinar key in Zoho Webinar.
Syntax:
<variable> = zoho.webinar.downloadTranscript(<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 recording transcript will be fetched from.
|
| <webinar_key> | TEXT | Specifies the unique key identifier where the webinar recordings transcript 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 |
Example: Downloading transcripts
The following script downloads the webinar transcript specified webinar details in Zoho Webinar.
response = zoho.webinar.downloadTranscript(25423, 2354235, webinar);
where:
response
Is the LIST returned by Zoho Webinar. It represents the webinar recording transcript details.
"25423"
Is the NUMBER of the unique portal identifier where the webinar recording will be fetched from.
"2354235"
Is the INTEGER of the unique key identifier of the webinar recording transcripts.
"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"
}
]