Zoom Connector
Documentation
Version: 1
Documentation
Endpoint

List Users


Name

list_users

Description

Use this API to list your account's users.'s users [API reference]

Related Tables

Users

Parameters

Parameter Label Required Options Description
page_size PageSize NO

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
id DT_WSTR nvarchar(255) 255 False
first_name DT_WSTR nvarchar(255) 255 False
last_name DT_WSTR nvarchar(255) 255 False
email DT_WSTR nvarchar(255) 255 False
type DT_I8 bigint False
pmi DT_I8 bigint False
timezone DT_WSTR nvarchar(255) 255 False
verified DT_I8 bigint False
dept DT_WSTR nvarchar(255) 255 False
created_at DT_DBTIMESTAMP datetime False
last_login_time DT_DBTIMESTAMP datetime False
last_client_version DT_WSTR nvarchar(255) 255 False
pic_url DT_WSTR nvarchar(2000) 2000 False
language DT_WSTR nvarchar(255) 255 False
phone_number DT_WSTR nvarchar(100) 100 False
status DT_WSTR nvarchar(100) 100 False
role_id DT_WSTR nvarchar(1000) 1000 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 Users table using API Destination

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

Zoom
Users
Select
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

List users

SELECT * FROM list_users

List Users

Lists all available Users for organization level

SELECT * FROM Users

list_users endpoint belongs to Users 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:

List users

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

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];

List Users

Lists all available Users for organization level

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

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];

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