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
Read and write Zoom data effortlessly. Integrate, manage, and automate meetings, users, accounts, and invitations — almost no coding required.
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
Read and write Zoom data effortlessly. Integrate, manage, and automate meetings, users, accounts, and invitations — almost no coding required.
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:

Read registration questions

<p>Reads the custom questions configured for a meeting's registration page. This helps in understanding what information is being collected from attendees.</p> <p>Use the <code>RegistrationQuestions</code> table with a <code>MeetingId</code> to see the specific questions asked.</p>

SELECT * FROM RegistrationQuestions
WITH(
  MeetingId='123456'
)

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:

Read registration questions

<p>Reads the custom questions configured for a meeting's registration page. This helps in understanding what information is being collected from attendees.</p> <p>Use the <code>RegistrationQuestions</code> table with a <code>MeetingId</code> to see the specific questions asked.</p>

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM RegistrationQuestions
WITH(
  MeetingId=''123456''
)';

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