Reference

Endpoint List Meeting Registrants


Name

list_meeting_registrants

Description

A host or a user with admin permission can require registration for a Zoom meeting. Use this API to list users that have registered for a meeting. [API reference]

Related Tables

MeetingRegistrants

Parameters

Parameter Required Options
Name: UserId

Label: UserId

Only Used to list Meetings in the UI
YES
Name: MeetingId

Label: MeetingId

The Meeting ID for which you want to get details.
YES
Name: page_size

Label: PageSize

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
id DT_WSTR nvarchar(255) 255
first_name DT_WSTR nvarchar(255) 255
last_name DT_WSTR nvarchar(255) 255
email DT_WSTR nvarchar(255) 255
address DT_WSTR nvarchar(255) 255
city DT_WSTR nvarchar(100) 100
country DT_WSTR nvarchar(100) 100
zip DT_WSTR nvarchar(100) 100
state DT_WSTR nvarchar(100) 100
phone DT_WSTR nvarchar(100) 100
industry DT_WSTR nvarchar(100) 100
org DT_WSTR nvarchar(255) 255
job_title DT_WSTR nvarchar(255) 255
purchasing_time_frame DT_WSTR nvarchar(255) 255
role_in_purchase_process DT_WSTR nvarchar(255) 255
no_of_employees DT_WSTR nvarchar(255) 255
comments DT_WSTR nvarchar(4000) 4000
custom_questions DT_NTEXT nvarchar(MAX)
status DT_WSTR nvarchar(100) 100
create_time DT_DBTIMESTAMP datetime
join_url DT_WSTR nvarchar(2000) 2000
If the column you are looking for is missing, consider customizing Zoom Connector.

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 MeetingRegistrants table, therefore it is better to use it, instead of accessing the endpoint directly:

API Source - Zoom
Zoom Connector can be used to integrate Zoom REST API in your App / BI Tools. You can read/write data about Meetings, Invite, Users, Accounts and more.
Zoom
MeetingRegistrants
Required Parameters
UserId Fill-in the parameter...
MeetingId Fill-in the parameter...
SSIS API Source - Read from table or endpoint

API Destination

This Endpoint belongs to the MeetingRegistrants table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to list meeting registrants:

API Destination - Zoom
Zoom Connector can be used to integrate Zoom REST API in your App / BI Tools. You can read/write data about Meetings, Invite, Users, Accounts and more.
Zoom
MeetingRegistrants
Select
Required Parameters
UserId Fill-in the parameter...
MeetingId Fill-in the parameter...
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

List Meeting Registrants

Select a meeting registants for the specific meeting id

SELECT * FROM MeetingRegistrants
WITH(
  MeetingId='1234'
)
--You can get MeetingId by selecting from 'list_meetings' endpoint and also this value available as dropdown value for MeetingId parameter.

list_meeting_registrants endpoint belongs to MeetingRegistrants 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 Meeting Registrants

Select a meeting registants for the specific meeting id

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM MeetingRegistrants
WITH(
  MeetingId=''1234''
)
--You can get MeetingId by selecting from ''list_meetings'' endpoint and also this value available as dropdown value for MeetingId parameter.';

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];

list_meeting_registrants endpoint belongs to MeetingRegistrants table(s), and can therefore be used via those table(s).