Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 2.7 KB

File metadata and controls

65 lines (51 loc) · 2.7 KB
title meetingRegistrationQuestion resource type
description Represents a custom registration question, other than first name, last name, and email address, associated with a meetingRegistration.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 03/06/2024

meetingRegistrationQuestion resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a custom registration question, other than first name, last name, and email address, associated with a meetingRegistration.

Methods

Method Return Type Description
List meetingRegistrationQuestion collection List all custom registration questions.
Create meetingRegistrationQuestion Create a custom registration question.
Get meetingRegistrationQuestion Get a custom registration question.
Update meetingRegistrationQuestion Update a custom registration question.
Delete meetingRegistrationQuestion Delete a custom registration question.

Properties

Property Type Description
answerInputType answerInputType Answer input type of the custom registration question.
answerOptions String collection Answer options when answerInputType is radioButton.
displayName String Display name of the custom registration question.
id String ID of the custom registration question. Read-only.
isRequired Boolean Indicates whether the question is required. Default value is false.

answerInputType values

Value Description
text Question accepts a single line text answer.
radioButton Question accepts an answer chosen from radio buttons.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

None.

JSON representation

{
  "id": "String",
  "displayName": "String",
  "isRequired": "Boolean",
  "answerInputType": { "@odata.type": "microsoft.graph.answerInputType" },
  "answerOptions": [ "String" ],
}