Table WebinarSettings
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.| Method | Supported | Reference EndPoint |
|---|---|---|
| SELECT | get_webinar_settings | |
| INSERT | ||
| UPDATE | ||
| UPSERT | ||
| DELETE | ||
| LOOKUP |
Examples
SSIS
Use Zoom Connector in API Source component to read data or in API Destination component to read/write data:
Read from WebinarSettings table using API Source
| Required Parameters | |
|---|---|
| WebinarId | Fill-in the parameter... |
Read/write to WebinarSettings table using API Destination
| Required Parameters | |
|---|---|
| WebinarId | Fill-in the parameter... |
ODBC application
Use these SQL queries in your ODBC application data source:
Read webinar settings
<p>Reads the specific settings and preferences for a webinar. This includes options for email notifications, recording, and practice sessions.</p> <p>Use the <code>WebinarSettings</code> table with a valid <code>WebinarId</code> to access these configuration details.</p>
SELECT * FROM WebinarSettings
WITH(
WebinarId='85463711883'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Read webinar settings
<p>Reads the specific settings and preferences for a webinar. This includes options for email notifications, recording, and practice sessions.</p> <p>Use the <code>WebinarSettings</code> table with a valid <code>WebinarId</code> to access these configuration details.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM WebinarSettings
WITH(
WebinarId=''85463711883''
)';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];