List Webinar Registrants
Name
list_webinar_registrants
Description
Use this API to list all the users that have registered for a webinar. [API reference]
Related Tables
Parameters
Parameter | Label | Required | Options | Description |
---|---|---|---|---|
WebinarId | WebinarId | YES | The Webinar ID for which you want to get details. | |
page_size | PageSize | NO |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
id |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
first_name |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
last_name |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
DT_WSTR
|
nvarchar(255)
|
255 | False |
||
address |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
city |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
country |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
zip |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
state |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
phone |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
industry |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
org |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
job_title |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
purchasing_time_frame |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
role_in_purchase_process |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
no_of_employees |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
comments |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
custom_questions |
DT_NTEXT
|
nvarchar(MAX)
|
False |
||
status |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
create_time |
DT_DBTIMESTAMP
|
datetime
|
False |
||
join_url |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | 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 component to read data or in API Destination component to read/write data:
Read from WebinarRegistrants table using API Destination
This Endpoint belongs to WebinarRegistrants table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

ODBC application
Use these SQL queries in your ODBC application data source:
List webinar registrants
SELECT * FROM list_webinar_registrants
WHERE id = 'abcd-1234-webinarid'
list_webinar_registrants
endpoint belongs to
WebinarRegistrants
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 webinar registrants
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_webinar_registrants
WHERE id = ''abcd-1234-webinarid''';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];
list_webinar_registrants
endpoint belongs to
WebinarRegistrants
table(s), and can therefore be used via those table(s).