meetingRegistrationQuestion 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.
Represents a custom registration question, other than first name, last name, and email address, associated with a meetingRegistration.
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. |
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 . |
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. |
None.
{
"id": "String",
"displayName": "String",
"isRequired": "Boolean",
"answerInputType": { "@odata.type": "microsoft.graph.answerInputType" },
"answerOptions": [ "String" ],
}