Endpoint List Past Meetings (All Users)
Name
list_past_meetings_all
Description
Get the list of past meetings for all users. To get more details about a meeting you can call get_meeting EndPoint. [API reference]
Parameters
| Parameter | Required | Options | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Name:
Label: FromDate For Pro account max 1year data, for Business / Education / Enterprise upto 2 years data, all other accounts only one month data returned. |
|
|||||||||||||||||||||||||||||
|
Name:
Label: ToDate |
|
|||||||||||||||||||||||||||||
|
Name:
Label: Past Meeting Type |
|
|||||||||||||||||||||||||||||
|
Name:
Label: PageSize |
Output Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
|---|---|---|---|---|
| id |
DT_WSTR
|
nvarchar(50)
|
50 | |
| user_id |
DT_WSTR
|
nvarchar(100)
|
100 | |
| user_email |
DT_WSTR
|
nvarchar(255)
|
255 | |
| user_name |
DT_WSTR
|
nvarchar(500)
|
500 | |
| 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 | |
| uuid |
DT_WSTR
|
nvarchar(200)
|
200 | |
| host_id |
DT_WSTR
|
nvarchar(100)
|
100 | |
| type |
DT_I8
|
bigint
|
||
| topic |
DT_WSTR
|
nvarchar(500)
|
500 | |
| start_time |
DT_DBTIMESTAMP
|
datetime
|
||
| end_time |
DT_DBTIMESTAMP
|
datetime
|
||
| duration |
DT_I4
|
int
|
||
| total_minutes |
DT_I4
|
int
|
||
| participants_count |
DT_I4
|
int
|
||
| dept |
DT_WSTR
|
nvarchar(255)
|
255 | |
| source |
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 Past Meetings (All Users)
| Optional Parameters | |
|---|---|
| FromDate | today-1y |
| ToDate | today |
| Past Meeting Type | past |
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 Past Meetings (All Users)
| Optional Parameters | |
|---|---|
| FromDate | today-1y |
| ToDate | today |
| Past Meeting Type | past |
ODBC application
Use these SQL queries in your ODBC application data source:
List past meetings
SELECT * FROM list_past_meetings_all
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List past meetings
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_past_meetings_all';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];