Reference

Endpoint List Meetings (All Users)


Name

list_meetings_all

Description

Get the list of meetings. For current all users. To get more details about a meeting you can call get_meeting EndPoint. [API reference]

Parameters

Parameter Required Options
Name: MeetingType

Label: Meeting Type

Option Value
scheduled scheduled
live live
upcoming upcoming
upcoming_meetings upcoming_meetings
previous_meetings previous_meetings
Name: page_size

Label: PageSize

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
id DT_I8 bigint
user_id DT_WSTR nvarchar(100) 100
user_email DT_WSTR nvarchar(100) 100
user_role_id DT_WSTR nvarchar(100) 100
user_dept DT_WSTR nvarchar(100) 100
user_first_name DT_WSTR nvarchar(100) 100
user_last_name DT_WSTR nvarchar(100) 100
user_status DT_WSTR nvarchar(50) 50
topic DT_WSTR nvarchar(500) 500
type DT_I8 bigint
start_time DT_DBTIMESTAMP datetime
duration DT_I8 bigint
timezone DT_WSTR nvarchar(100) 100
agenda DT_WSTR nvarchar(4000) 4000
created_at DT_DBTIMESTAMP datetime
join_url DT_WSTR nvarchar(1000) 1000
pmi DT_WSTR nvarchar(100) 100
uuid DT_WSTR nvarchar(100) 100
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

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
List Meetings (All Users)
Optional Parameters
Meeting Type scheduled
SSIS API Source - Read from table or endpoint

API Destination

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
List Meetings (All Users)
Optional Parameters
Meeting Type scheduled
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

List meetings

SELECT * FROM list_meetings_all

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

List meetings

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_meetings_all';

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];