virtualEvent resource type

Namespace: microsoft.graph

Represents a base virtual event.

This is an abstract type. The base type of virtualEventWebinar.

Inherits from entity.

Tip

This is an abstract type and can't be used directly. Use the derived type virtualEventWebinar instead.

Properties

Property Type Description
createdBy communicationsIdentitySet Identity information for the creator of the virtual event. Inherited from virtualEvent.
description itemBody Description of the virtual event.
displayName String Display name of the virtual event.
endDateTime dateTimeTimeZone End time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
id String Unique identifier of the virtual event. Inherited from entity.
startDateTime dateTimeTimeZone Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
status virtualEventStatus Status of the virtual event. The possible values are: draft, published, canceled, unknownFutureValue.

Relationships

Relationship Type Description
sessions virtualEventSession collection Sessions for the virtual event.

JSON representation

The following JSON representation shows the resource type

{
  "@odata.type": "#microsoft.graph.virtualEvent",
  "id": "String (identifier)",
  "status": "String",
  "displayName": "String",
  "description": {
    "@odata.type": "microsoft.graph.itemBody"
  },
  "startDateTime": {
    "@odata.type": "microsoft.graph.dateTimeTimeZone"
  },
  "endDateTime": {
    "@odata.type": "microsoft.graph.dateTimeTimeZone"
  },
  "createdBy": {
    "@odata.type": "microsoft.graph.communicationsIdentitySet"
  }
}