| 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 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
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" ],
}