Endpoint GET Current User (Me)
Name
get_user_me
Description
Parameters
| Parameter | Required | Options | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| There are no parameters | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Output Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
|---|---|---|---|---|
| id |
DT_WSTR
|
nvarchar(255)
|
255 | |
| account_id |
DT_WSTR
|
nvarchar(255)
|
255 | |
| account_number |
DT_I8
|
bigint
|
||
| first_name |
DT_WSTR
|
nvarchar(255)
|
255 | |
| last_name |
DT_WSTR
|
nvarchar(255)
|
255 | |
DT_WSTR
|
nvarchar(255)
|
255 | ||
| type |
DT_I8
|
bigint
|
||
| cluster |
DT_WSTR
|
nvarchar(255)
|
255 | |
| pmi |
DT_I8
|
bigint
|
||
| timezone |
DT_WSTR
|
nvarchar(255)
|
255 | |
| verified |
DT_I8
|
bigint
|
||
| dept |
DT_WSTR
|
nvarchar(255)
|
255 | |
| created_at |
DT_DBTIMESTAMP
|
datetime
|
||
| last_login_time |
DT_DBTIMESTAMP
|
datetime
|
||
| last_client_version |
DT_WSTR
|
nvarchar(255)
|
255 | |
| pic_url |
DT_WSTR
|
nvarchar(2000)
|
2000 | |
| language |
DT_WSTR
|
nvarchar(255)
|
255 | |
| phone_number |
DT_WSTR
|
nvarchar(100)
|
100 | |
| status |
DT_WSTR
|
nvarchar(100)
|
100 | |
| role_id |
DT_WSTR
|
nvarchar(1000)
|
1000 |
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
GET Current User (Me)
| There are no parameters to configure. |
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
GET Current User (Me)
| There are no parameters to configure. |
ODBC application
Use these SQL queries in your ODBC application data source:
Get current user
SELECT * FROM get_user_me
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get current user
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_user_me';
EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_GATEWAY];