Zoom Connector
Documentation
Version: 1
Documentation
Endpoint

Past Meeting


Name

list_past_meeting_registrants

Description

Use this API to get information about a past meeting. [API reference]

Related Tables

PastMeetingRegistrants

Parameters

Parameter Label Required Options Description
MeetingId MeetingId YES The Meeting 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_I8 bigint False
host_id DT_WSTR nvarchar(100) 100 False
type DT_I8 bigint False
topic DT_WSTR nvarchar(500) 500 False
user_name DT_WSTR nvarchar(255) 255 False
user_email DT_WSTR nvarchar(255) 255 False
start_time DT_DBTIMESTAMP datetime False
end_time DT_DBTIMESTAMP datetime False
duration DT_I8 bigint False
total_minutes DT_I8 bigint False
participants_count DT_I8 bigint False
dept DT_WSTR nvarchar(8) 8 False
source DT_WSTR nvarchar(16) 16 False
uuid DT_WSTR nvarchar(100) 100 False
If the column you are looking for is missing, consider customizing Zoom Connector.

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 PastMeetingRegistrants table using API Destination

This Endpoint belongs to PastMeetingRegistrants table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

Zoom
PastMeetingRegistrants
Select
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Past meeting

SELECT * FROM list_past_meeting_registrants
WHERE id = 'abcd-1234-meetingid'

List Past Meeting Registrants

Select a past meeting registants for the specific meeting id

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

list_past_meeting_registrants endpoint belongs to PastMeetingRegistrants 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:

Past meeting

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_past_meeting_registrants
WHERE id = ''abcd-1234-meetingid''';

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];

List Past Meeting Registrants

Select a past meeting registants for the specific meeting id

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM PastMeetingRegistrants
				
			WITH(
					  MeetingId=''123456''
				)
				--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_past_meeting_registrants endpoint belongs to PastMeetingRegistrants table(s), and can therefore be used via those table(s).