Download transcript - Zoho Webinar

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:

ParamsData typeDescription
<variable>LISTSpecifies 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.

Note: Portal_Id can be fetched in the following ways.

  • From the URL of the application while accessing it. The URL is in the format webinar.zoho.com/webinar/portal_Id/department_Id/home
  • Get portal ID from Zoho Webinar API, where ZSOID represents the portal ID.
<webinar_key>TEXTSpecifies the unique key identifier where the webinar recordings transcript will be fetched from.
<connection>TEXTSpecifies 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"
  }
]