Szerkesztés

Megosztás a következőn keresztül:


meetingRegistrant resource type (deprecated)

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 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 31, 2024. Please use the new webinar APIs. For more information, see Deprecation of the Microsoft Graph meeting registration beta APIs.

Methods

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.

Properties

Property Type Description
customQuestionAnswers customQuestionAnswer collection The registrant's answer to custom questions.
email 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.

meetingRegistrantStatus values

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.

JSON representation

The following is a JSON representation of the resource.

{
  "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" }]
}