Table Meetings
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.| Method | Supported | Reference EndPoint |
|---|---|---|
| SELECT | list_meetings | |
| INSERT | ||
| UPDATE | ||
| UPSERT | ||
| DELETE | ||
| LOOKUP | get_meeting |
Examples
SSIS
Use Zoom Connector in API Source component to read data or in API Destination component to read/write data:
Read from Meetings table using API Source
| Required Parameters | |
|---|---|
| UserId | Fill-in the parameter... |
| Optional Parameters | |
| Meeting Type | scheduled |
Read/write to Meetings table using API Destination
| Required Parameters | |
|---|---|
| UserId | Fill-in the parameter... |
| Optional Parameters | |
| Meeting Type | scheduled |
ODBC application
Use these SQL queries in your ODBC application data source:
Read meetings
<p>Reads scheduled meetings for a specific user. This list includes meeting topics, start times, and join URLs. Use <code>UserId='me'</code> for the current user or provide a specific user email/ID.</p> <p>The <code>Meetings</code> table is the primary way to access meeting schedules and details.</p>
SELECT * FROM Meetings
WITH(
UserId ='me' -- enter user id or email
)
Read meeting by ID
<p>Reads detailed information about a specific meeting. This returns extended properties not always available in the list view, such as password settings and recurrence details.</p> <p>Use the <code>WHERE id=...</code> clause to filter for a single meeting record. Replace <code>1234</code> with the actual meeting ID.</p>
SELECT * FROM Meetings WHERE id=1234
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Read meetings
<p>Reads scheduled meetings for a specific user. This list includes meeting topics, start times, and join URLs. Use <code>UserId='me'</code> for the current user or provide a specific user email/ID.</p> <p>The <code>Meetings</code> table is the primary way to access meeting schedules and details.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Meetings
WITH(
UserId =''me'' -- enter user id or email
)';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];
Read meeting by ID
<p>Reads detailed information about a specific meeting. This returns extended properties not always available in the list view, such as password settings and recurrence details.</p> <p>Use the <code>WHERE id=...</code> clause to filter for a single meeting record. Replace <code>1234</code> with the actual meeting ID.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Meetings WHERE id=1234';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];