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
| Required Parameters | |
|---|---|
| MeetingId | Fill-in the parameter... |
Read/write to RegistrationQuestions table using API Destination
| Required Parameters | |
|---|---|
| MeetingId | Fill-in the parameter... |
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];