Reference

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

API Source - Zoom
Read and write Zoom data effortlessly. Integrate, manage, and automate meetings, users, accounts, and invitations — almost no coding required.
Zoom
WebinarSettings
Required Parameters
WebinarId Fill-in the parameter...
SSIS API Source - Read from table or endpoint

Read/write to WebinarSettings table using API Destination

API Destination - Zoom
Read and write Zoom data effortlessly. Integrate, manage, and automate meetings, users, accounts, and invitations — almost no coding required.
Zoom
WebinarSettings
Select
Required Parameters
WebinarId Fill-in the parameter...
SSIS API Destination - Access table operation

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];