Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Represents an abstract base type for a virtual event. Base type of virtualEventTownhall and virtualEventWebinar.
Inherits from entity.
Tip
This is an abstract type and can't be used directly. Use the derived types virtualEventTownhall or virtualEventWebinar instead.
Methods
| Method | Return Type | Description |
|---|---|---|
| Set external event information | None | Link external event information to a virtualEventTownhall or virtualEventWebinar by setting an externalEventId. |
Properties
| Property | Type | Description |
|---|---|---|
| createdBy | communicationsIdentitySet | The identity information for the creator of the virtual event. Inherited from virtualEvent. |
| description | itemBody | A description of the virtual event. |
| displayName | String | The display name of the virtual event. |
| endDateTime | dateTimeTimeZone | The 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. |
| externalEventInformation | virtualEventExternalInformation collection | The external information of a virtual event. Returned only for event organizers or coorganizers; otherwise, null. |
| id | String | The unique identifier of the virtual event. Inherited from entity. |
| isRegistrationRequired | Boolean | Indicates whether attendee registration is enabled for the virtual event. |
| settings | virtualEventSettings | The virtual event settings. |
| 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 | The status of the virtual event. The possible values are: draft, published, canceled, and unknownFutureValue. |
Note
The isRegistrationRequired property controls whether the virtual event uses the registration workflow.
When isRegistrationRequired is false, registration-related APIs can still be invoked. However, these calls don't trigger the full registration experience. Instead, they behave as an add-to-calendar action, allowing attendees to add the event to their calendar without completing a registration process.
For webinars, registration is enabled by default (isRegistrationRequired is true).
For town halls, registration isn't enabled by default. If registration is required for a town hall, the organizer must explicitly set isRegistrationRequired to true when configuring the virtual event.
Relationships
| Relationship | Type | Description |
|---|---|---|
| presenters | virtualEventPresenter collection | The virtual event presenters. |
| sessions | virtualEventSession collection | The sessions for the virtual event. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.virtualEvent",
"createdBy": {
"@odata.type": "microsoft.graph.communicationsIdentitySet"
},
"description": {
"@odata.type": "microsoft.graph.itemBody"
},
"displayName": "String",
"endDateTime": {
"@odata.type": "microsoft.graph.dateTimeTimeZone"
},
"externalEventInformation" : [{
"@odata.type": "microsoft.graph.virtualEventExternalInformation"
}],
"id": "String (identifier)",
"isRegistrationRequired": "Boolean",
"settings": {
"@odata.type": "microsoft.graph.virtualEventSettings"
},
"startDateTime": {
"@odata.type": "microsoft.graph.dateTimeTimeZone"
},
"status": "String"
}