Reference

Table RegistrationQuestions


Description

No description available

Supported Operations

Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.
Method Supported Reference EndPoint
SELECT list_registration_questions
INSERT
UPDATE
UPSERT
DELETE
LOOKUP

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 Source

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

Read/write to RegistrationQuestions table using API Destination

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

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];