Zoom Connector
Documentation
Version: 1
Documentation
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

RegistrationQuestions

Parameters

Parameter Label Required Options Description
MeetingId MeetingId YES The Meeting ID for which you want to get details.

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
questions DT_WSTR nvarchar(1000) 1000 False
custom_questions DT_NTEXT nvarchar(MAX) 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 RegistrationQuestions table using API Destination

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

Zoom
RegistrationQuestions
Select
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

List registration questions

SELECT * FROM list_registration_questions
WHERE id = 'abcd-1234-meetingid'

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

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_registration_questions
WHERE id = ''abcd-1234-meetingid''';

EXEC (@MyQuery) AT [LS_TO_ZOOM_IN_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).