Reference

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 Required Options
Name: MeetingId

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)
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

This Endpoint belongs to the RegistrationQuestions table, therefore it is better to use it, instead of accessing the endpoint directly:

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
RegistrationQuestions
Required Parameters
MeetingId Fill-in the parameter...
SSIS API Source - Read from table or endpoint

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:

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
RegistrationQuestions
Select
Required Parameters
MeetingId Fill-in the parameter...
SSIS API Destination - Access table operation

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).