Endpoint List Registration Questions
Name
list_registration_questions
Description
List registration questions that will be displayed to users while registering for a meeting. [API reference]
Related Tables
Parameters
Parameter | Required | Options |
---|---|---|
Name:
Label: MeetingId The Meeting ID for which you want to get details. |
YES |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
---|---|---|---|---|
questions |
DT_WSTR
|
nvarchar(1000)
|
1000 | |
custom_questions |
DT_NTEXT
|
nvarchar(MAX)
|
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 RegistrationQuestions table, therefore it is better to use it, instead of accessing the endpoint directly:
Required Parameters | |
---|---|
MeetingId | Fill-in the parameter... |

API Destination
This Endpoint belongs to the RegistrationQuestions table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to list registration questions:
Required Parameters | |
---|---|
MeetingId | Fill-in the parameter... |

ODBC application
Use these SQL queries in your ODBC application data source:
List Registration Questions
Select a meeting registants questions for the specific meeting id
SELECT * FROM RegistrationQuestions
WITH(
MeetingId='123456'
)
--You can get MeetingId by selecting from 'list_meetings' endpoint and also this value available as dropdown value for MeetingId parameter.
list_registration_questions
endpoint belongs to
RegistrationQuestions
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 Registration Questions
Select a meeting registants questions for the specific meeting id
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM RegistrationQuestions
WITH(
MeetingId=''123456''
)
--You can get MeetingId 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];
list_registration_questions
endpoint belongs to
RegistrationQuestions
table(s), and can therefore be used via those table(s).