Endpoint Get Webinar Settings
Name
get_webinar_settings
Description
Use this API to get settings details of a scheduled webinar. [API reference]
Related Tables
Parameters
Parameter | Required | Options |
---|---|---|
Name:
Label: WebinarId The Webinar ID for which you want to get details. |
YES |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
---|---|---|---|---|
host_video |
DT_BOOL
|
bit
|
||
panelists_video |
DT_BOOL
|
bit
|
||
approval_type |
DT_I8
|
bigint
|
||
audio |
DT_WSTR
|
nvarchar(16)
|
16 | |
auto_recording |
DT_WSTR
|
nvarchar(16)
|
16 | |
enforce_login |
DT_BOOL
|
bit
|
||
enforce_login_domains |
DT_WSTR
|
nvarchar(100)
|
100 | |
alternative_hosts |
DT_WSTR
|
nvarchar(100)
|
100 | |
alternative_host_update_polls |
DT_BOOL
|
bit
|
||
close_registration |
DT_BOOL
|
bit
|
||
show_share_button |
DT_BOOL
|
bit
|
||
allow_multiple_devices |
DT_BOOL
|
bit
|
||
practice_session |
DT_BOOL
|
bit
|
||
hd_video |
DT_BOOL
|
bit
|
||
question_answer |
DT_BOOL
|
bit
|
||
registrants_confirmation_email |
DT_BOOL
|
bit
|
||
on_demand |
DT_BOOL
|
bit
|
||
request_permission_to_unmute_participants |
DT_BOOL
|
bit
|
||
contact_name |
DT_WSTR
|
nvarchar(255)
|
255 | |
contact_email |
DT_WSTR
|
nvarchar(255)
|
255 | |
registrants_restrict_number |
DT_I8
|
bigint
|
||
registrants_email_notification |
DT_BOOL
|
bit
|
||
post_webinar_survey |
DT_BOOL
|
bit
|
||
meeting_authentication |
DT_BOOL
|
bit
|
||
question_and_answer_enable |
DT_BOOL
|
bit
|
||
question_and_answer_allow_anonymous_questions |
DT_BOOL
|
bit
|
||
question_and_answer_answer_questions |
DT_WSTR
|
nvarchar(255)
|
255 | |
question_and_answer_attendees_can_upvote |
DT_BOOL
|
bit
|
||
question_and_answer_attendees_can_comment |
DT_BOOL
|
bit
|
||
hd_video_for_attendees |
DT_BOOL
|
bit
|
||
send_1080p_video_to_attendees |
DT_BOOL
|
bit
|
||
email_language |
DT_WSTR
|
nvarchar(255)
|
255 | |
panelists_invitation_email_notification |
DT_BOOL
|
bit
|
||
attendees_and_panelists_reminder_email_notification_enable |
DT_BOOL
|
bit
|
||
attendees_and_panelists_reminder_email_notification_type |
DT_I8
|
bigint
|
||
follow_up_attendees_email_notification_enable |
DT_BOOL
|
bit
|
||
follow_up_attendees_email_notification_type |
DT_I8
|
bigint
|
||
follow_up_absentees_email_notification_enable |
DT_BOOL
|
bit
|
||
follow_up_absentees_email_notification_type |
DT_I8
|
bigint
|
||
enable_session_branding |
DT_BOOL
|
bit
|
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 WebinarSettings table, therefore it is better to use it, instead of accessing the endpoint directly:
Required Parameters | |
---|---|
WebinarId | Fill-in the parameter... |

API Destination
This Endpoint belongs to the WebinarSettings table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to get webinar settings:
Required Parameters | |
---|---|
WebinarId | Fill-in the parameter... |

ODBC application
Use these SQL queries in your ODBC application data source:
Get Webinar Settings
Select a webinar from the list_webinars by providing webinar id
SELECT * FROM WebinarSettings
WITH(
WebinarId='85463711883'
)
--You can get WebinarId by selecting from 'list_webinars' endpoint and also this value available as dropdown value for WebinarId parameter.
get_webinar_settings
endpoint belongs to
WebinarSettings
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:
Get Webinar Settings
Select a webinar from the list_webinars by providing webinar id
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM WebinarSettings
WITH(
WebinarId=''85463711883''
)
--You can get WebinarId by selecting from ''list_webinars'' endpoint and also this value available as dropdown value for WebinarId parameter.';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];
get_webinar_settings
endpoint belongs to
WebinarSettings
table(s), and can therefore be used via those table(s).