virtualEventWebinar resource type

Namespace: microsoft.graph

Contains information about a virtual event webinar.

Inherits from virtualEvent.

Methods

Method Return Type Description
List webinars virtualEventWebinar collection Get the list of all virtualEventWebinar objects created in the tenant.
Get virtualEventWebinar virtualEventWebinar Read the properties and relationships of a virtualEventWebinar object.
List by user role virtualEventWebinar collection Get a virtualEventWebinar collection where the signed-in user is either the organizer or a co-organizer.
List by user ID and role virtualEventWebinar collection Get a virtualEventWebinar collection where the specified user is either the organizer or a co-organizer.

Properties

Property Type Description
audience meetingAudience To whom the webinar is visible.
coOrganizers communicationsUserIdentity collection Identity information of coorganizers of the webinar.
createdBy communicationsIdentitySet Identity information for the creator of the webinar. Inherited from virtualEvent.
description itemBody Description of the webinar. Inherited from virtualEvent.
displayName String Display name of the webinar. Inherited from virtualEvent.
endDateTime dateTimeTimeZone End time of the webinar. 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.
startDateTime dateTimeTimeZone Start time of the webinar. 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 webinar. Inherited from entity.
status virtualEventStatus Status of the webinar.

meetingAudience values

Value Description
everyone The webinar is a public webinar. A public webinar is visible to everyone.
organization The webinar is a private webinar. A private webinar is visible only within the same organization as the organizer.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

virtualEventStatus values

Value Description
draft The webinar is in draft and only visible to the organizer.
published The organizer published the webinar and it's visible to the audience.
canceled The organizer canceled the webinar.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

Relationship Type Description
registrations virtualEventRegistration collection Registration records of the webinar.
sessions virtualEventSession collection Sessions of the webinar. Inherited from virtualEvent.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.virtualEventWebinar",
  "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"
  },
  "audience": "String",
  "coOrganizers": [
    {
      "@odata.type": "microsoft.graph.communicationsUserIdentity"
    }
  ]
}