Muokkaa

Jaa


virtualEventRegistration resource type

Namespace: microsoft.graph

Represents a registrant's registration record for a virtualEventWebinar.

Inherits from entity.

Methods

Method Return type Description
List virtualEventRegistration collection Get a list of all registration records of a webinar.
Create virtualEventRegistration Create a registrant's registration record for a webinar.
Get virtualEventRegistration Get the properties and relationships of a virtualEventRegistration object.
Cancel None Cancel a registrant's registration record for a webinar.
List sessions virtualEventSession collection Get a list of sessions that a registrant registered for in a webinar.

Properties

Property Type Description
cancelationDateTime DateTimeOffset Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
email String Email address of the registrant.
firstName String First name of the registrant.
id String Unique identifier of the registrant. Read-only. Inherited from entity.
lastName String Last name of the registrant.
registrationDateTime DateTimeOffset Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
registrationQuestionAnswers virtualEventRegistrationQuestionAnswer collection The registrant's answer to the registration questions.
status virtualEventAttendeeRegistrationStatus Registration status of the registrant. Read-only. Possible values are registered, canceled, waitlisted, pendingApproval, rejectedByOrganizer, and unknownFutureValue.
userId String The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID.
preferredTimezone String The registrant's time zone details.
preferredLanguage String The registrant's preferred language.

Relationships

Relationship Type Description
sessions virtualEventSession collection Sessions for a registration.

JSON representation

The following JSON representation shows the resource type

{
  "@odata.type": "#microsoft.graph.virtualEventRegistration",
  "cancelationDateTime": "String (timestamp)",
  "email": "String",
  "firstName": "String",
  "id": "String (identifier)",
  "lastName": "String",
  "registrationDateTime": "String (timestamp)",
  "registrationQuestionAnswers": [{"@odata.type": "microsoft.graph.virtualEventRegistrationQuestionAnswer"}],
  "status": "String",
  "userId": "String",
  "preferredTimezone": "String",
  "preferredLanguage": "String"
}