Endpoint List Webinars
Name
list_webinars
Description
Use this API to list all the webinars scheduled by or on-behalf a user (webinar host). For user-level apps, pass the me value instead of the userId parameter. [API reference]
Related Tables
Parameters
Parameter | Required | Options |
---|---|---|
Name:
Label: UserId The user ID or email address of the user. For user-level apps, pass the me value. |
YES | |
Name:
Label: PageSize |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
---|---|---|---|---|
id |
DT_I8
|
bigint
|
||
host_id |
DT_WSTR
|
nvarchar(255)
|
255 | |
topic |
DT_WSTR
|
nvarchar(500)
|
500 | |
type |
DT_I8
|
bigint
|
||
start_time |
DT_DBTIMESTAMP
|
datetime
|
||
duration |
DT_I8
|
bigint
|
||
timezone |
DT_WSTR
|
nvarchar(100)
|
100 | |
created_at |
DT_DBTIMESTAMP
|
datetime
|
||
join_url |
DT_WSTR
|
nvarchar(1000)
|
1000 | |
uuid |
DT_WSTR
|
nvarchar(100)
|
100 |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Zoom Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
This Endpoint belongs to the Webinars table, therefore it is better to use it, instead of accessing the endpoint directly:
Required Parameters | |
---|---|
UserId | Fill-in the parameter... |

API Destination
This Endpoint belongs to the Webinars table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to list webinars:
Required Parameters | |
---|---|
UserId | Fill-in the parameter... |

ODBC application
Use these SQL queries in your ODBC application data source:
List Webinars
Lists all available Webinars for a selected User with webinars access rights
SELECT * FROM Webinars
WITH(
UserId='test' -- enter user id or email
)
--You can get UserId by selecting from 'list_users' endpoint and also this value available as dropdown value for UserId parameter.
list_webinars
endpoint belongs to
Webinars
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List Webinars
Lists all available Webinars for a selected User with webinars access rights
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Webinars
WITH(
UserId=''test'' -- enter user id or email
)
--You can get UserId by selecting from ''list_users'' endpoint and also this value available as dropdown value for UserId parameter.';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];
list_webinars
endpoint belongs to
Webinars
table(s), and can therefore be used via those table(s).