Get all recordings - Zoho Webinar
Table of Contents
Note:
- This task is applicable to all services except Zoho Creator.
- Each time the zoho.webinar.getAllRecordings integration task is executed, it triggers an API request in the back-end. This call is deducted from the external calls limit available for the service from which the task is executed, based on your pricing plan.
- Only actual executions that receive a response (whether success or failure) are counted, not the number of times the task appears in the script. For example, if zoho.webinar.getAllRecordings integration task is placed inside a for each task that iterates five times, the number of external calls consumed will be five, even though the task appears only once in the script.
Overview:
This task is used to get all webinar recordings available in Zoho Webinar.
This task is based on Zoho Webinar API: Get all recordings.
Syntax:
<variable> = zoho.webinar.getAllRecordings(<portal_id>, <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> | TEXT | Specifies the unique portal identifier where the webinar recordings will be fetched from. Note: Portal_Id can be fetched from the URL format webinar.zoho.com/webinar/portal_Id/department_Id/home or from Zoho Webinar API where ZSOID represents the portal ID. |
| <index> | INTEGER | Specifies the pagination start index. Default: 1. |
| <count> | INTEGER | Specifies the number of recordings to fetch. |
| <connection> | TEXT | Specifies the link name of the Zoho Webinar connection. Required scope: ZohoWebinar.recording.READ |
Example:
response = zoho.webinar.getAllRecordings(99031443,1,20,"webinar");
where:
responseIs the KEY-VALUE returned by Zoho Webinar. It represents the recording details.
99031443Is the NUMBER portal identifier where the webinar recordings will be fetched from.
1Is the INTEGER pagination start index.
20Is the INTEGER of the number of recordings to fetch.
"webinar"Is the TEXT that represents the name of the connection.
Sample response
Success response
{
"recordings": [ { ... } ],
"meta": { "recordingLimitStatus": -1, "moreRecords": true, "count": 0 }
}
"recordings": [ { ... } ],
"meta": { "recordingLimitStatus": -1, "moreRecords": true, "count": 0 }
}
Failure response
{
"error": {
"errorCode": 3001,
"message": "You do not have permission to access this organization account.",
"key": "UNAUTHORIZED_USER"
}
}
"error": {
"errorCode": 3001,
"message": "You do not have permission to access this organization account.",
"key": "UNAUTHORIZED_USER"
}
}