| title | meetingRegistrant resource type |
|---|---|
| description | Represents a meeting registrant who enrolled in an online meeting. |
| author | awang119 |
| ms.localizationpriority | medium |
| ms.subservice | cloud-communications |
| doc_type | resourcePageType |
| toc.title | Meeting Registrant (deprecated) |
| ms.date | 10/15/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a meeting registrant who enrolled in an online meeting.
Inherits from meetingRegistrantBase.
Caution
The meeting registrant API is deprecated and will stop returning data on December 12, 2024. Please use the new webinar APIs. For more information, see Deprecation of the Microsoft Graph meeting registration beta APIs.
| Method | Return Type | Description |
|---|---|---|
| List | meetingRegistrant | List all registrants who enrolled in the meeting. |
| Create | meetingRegistrant | Enroll a registrant in an online meeting. |
| Delete | meetingRegistrant | Unenroll a registrant from an online meeting. |
| Property | Type | Description |
|---|---|---|
| customQuestionAnswers | customQuestionAnswer collection | The registrant's answer to custom questions. |
| String | The email address of the registrant. | |
| firstName | String | The first name of the registrant. |
| id | String | The unique identifier of the registrant. Read-only. |
| joinWebUrl | String | A unique web URL for the registrant to join the meeting. Read-only. |
| lastName | String | The family name of the registrant. |
| registrationDateTime | String | Time in UTC when the registrant registers for the meeting. Read-only. |
| status | meetingRegistrantStatus | The registration status of the registrant. Read-only. |
| Value | Description |
|---|---|
| registered | Registrant has enrolled in the meeting. |
| canceled | Registrant has canceled their registration. |
| processing | Interim status indicating the status is processing. |
| unknownFutureValue | Evolvable enumeration sentinel value. Don't use. |
None.
The following JSON representation shows the resource type.
{
"id": "String",
"firstName": "String (timestamp)",
"email": "String",
"lastName": "String",
"joinWebUrl": "String",
"registrationDateTime": "String (timestamp)",
"status": { "@odata.type": "microsoft.graph.meetingRegistrantStatus" },
"customQuestionAnswers": [{ "@odata.type": "microsoft.graph.customQuestionAnswer" }]
}