Reference

Endpoint Get Meeting By Id


Name

get_meeting

Description

The Meeting Id or email address of the user. For user-level apps, pass the me value. [API reference]

Related Tables

Meetings

Parameters

Parameter Required Options
Name: MeetingId

Label: MeetingId

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

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
id DT_I8 bigint
host_id DT_WSTR nvarchar(100) 100
host_email DT_WSTR nvarchar(255) 255
assistant_id DT_WSTR nvarchar(100) 100
topic DT_WSTR nvarchar(400) 400
type DT_I8 bigint
status DT_WSTR nvarchar(30) 30
timezone DT_WSTR nvarchar(100) 100
agenda DT_NTEXT nvarchar(MAX)
created_at DT_DBTIMESTAMP datetime
start_url DT_WSTR nvarchar(4000) 4000
join_url DT_WSTR nvarchar(500) 500
registration_url DT_WSTR nvarchar(500) 500
password DT_WSTR nvarchar(100) 100
h323_password DT_WSTR nvarchar(100) 100
pstn_password DT_WSTR nvarchar(100) 100
encrypted_password DT_WSTR nvarchar(400) 400
occurrences DT_NTEXT nvarchar(MAX)
settings_host_video DT_BOOL bit
settings_participant_video DT_BOOL bit
settings_cn_meeting DT_BOOL bit
settings_in_meeting DT_BOOL bit
settings_join_before_host DT_BOOL bit
settings_jbh_time DT_I8 bigint
settings_mute_upon_entry DT_BOOL bit
settings_watermark DT_BOOL bit
settings_use_pmi DT_BOOL bit
settings_approval_type DT_I8 bigint
settings_registration_type DT_I8 bigint
settings_audio DT_WSTR nvarchar(16) 16
settings_auto_recording DT_WSTR nvarchar(20) 20
settings_enforce_login DT_BOOL bit
settings_enforce_login_domains DT_WSTR nvarchar(255) 255
settings_alternative_hosts DT_WSTR nvarchar(4000) 4000
settings_alternative_host_update_polls DT_BOOL bit
settings_close_registration DT_BOOL bit
settings_show_share_button DT_BOOL bit
settings_allow_multiple_devices DT_BOOL bit
settings_registrants_confirmation_email DT_BOOL bit
settings_waiting_room DT_BOOL bit
settings_request_permission_to_unmute_participants DT_BOOL bit
settings_global_dial_in_countries DT_WSTR nvarchar(4000) 4000
settings_global_dial_in_numbers DT_WSTR nvarchar(4000) 4000
settings_registrants_email_notification DT_BOOL bit
settings_meeting_authentication DT_BOOL bit
settings_encryption_type DT_WSTR nvarchar(76) 76
settings_approved_or_denied_countries_or_regions_enable DT_BOOL bit
settings_breakout_room_enable DT_BOOL bit
settings_alternative_hosts_email_notification DT_BOOL bit
settings_device_testing DT_BOOL bit
settings_focus_mode DT_BOOL bit
settings_private_meeting DT_BOOL bit
settings_email_notification DT_BOOL bit
recurrence_type DT_I8 bigint
recurrence_repeat_interval DT_I8 bigint
recurrence_end_date_time DT_DBTIMESTAMP datetime
pre_schedule DT_BOOL bit
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

This Endpoint belongs to the Meetings 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
Meetings
Required Parameters
MeetingId Fill-in the parameter...
SSIS API Source - Read from table or endpoint

API Destination

This Endpoint belongs to the Meetings table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to get meeting by id:

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
Meetings
Lookup
Required Parameters
MeetingId Fill-in the parameter...
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Get Meeting

Select a meeting from the list_meetings by providing meeting id

SELECT * FROM Meetings Where id=1234
--You can get id by selecting from 'list_meetings' endpoint and also this value available as dropdown value for MeetingId parameter.

get_meeting endpoint belongs to Meetings 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 Meeting

Select a meeting from the list_meetings by providing meeting id

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Meetings Where id=1234
--You can get id 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];

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