virtualEventRegistrationQuestionBase resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

The abstract base type for a virtual event registration question.

Base type of virtualEventRegistrationCustomQuestion and virtualEventRegistrationPredefinedQuestion.

Inherits from entity.

Tip

This is an abstract type and can't be used directly. Use the derived types virtualEventRegistrationCustomQuestion and virtualEventRegistrationPredefinedQuestion instead.

Methods

Method Return type Description
List virtualEventRegistrationCustomQuestion collection or virtualEventRegistrationPredefinedQuestion collection Get a list of all registration questions for a webinar.
Create virtualEventRegistrationCustomQuestion object or virtualEventRegistrationPredefinedQuestion object Create a registration question for a webinar.
Delete None Delete a registration question from a webinar.

Properties

Property Type Description
displayName String Display name of the registration question.
id String Unique identifier of the registration question. Inherited from entity.
isRequired Boolean Indicates whether an answer to the question is required. The default value is false.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.virtualEventRegistrationQuestionBase",
  "displayName": "String",  
  "id": "String (identifier)",
  "isRequired": "Boolean"
}