Skip to content

Latest commit

 

History

History
82 lines (64 loc) · 3.64 KB

File metadata and controls

82 lines (64 loc) · 3.64 KB
title meetingRegistration resource type
description Contains information about online meeting registration.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
toc.title Meeting registration (deprecated)
ms.date 07/11/2024

meetingRegistration resource type (deprecated)

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Caution

The meeting registration API is deprecated and will stop returning data on July 31, 2024. Please use the new webinar APIs. For more information, see Deprecation of the Microsoft Graph meeting registration beta APIs.

Contains registration details of an online meeting, such as a Microsoft Teams Webinar.

Inherits from meetingRegistrationBase.

Methods

Method Return Type Description
Create meetingRegistration Create and enable registration for an online meeting.
Get meetingRegistration Retrieve the details of a meeting registration.
Update meetingRegistration Update the details of a meeting registration.
Delete meetingRegistration Disable and delete registration for an online meeting.

Properties

Property Type Description
allowedRegistrant meetingAudience Specifies who can register for the meeting.
description String The description of the meeting.
endDateTime DateTime The meeting end time in UTC.
registrationPageViewCount Int32 The number of times the registration page has been visited. Read-only.
registrationPageWebUrl String The URL of the registration page. Read-only.
speakers meetingSpeaker collection The meeting speaker's information.
startDateTime DateTime The meeting start time in UTC.
subject String The subject of the meeting.

meetingAudience values

Value Description
everyone Everyone can register for the meeting.
organization Everyone in the organizer’s organization can register for the meeting.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

Relationship Type Description
customQuestions meetingRegistrationQuestion collection Custom registration questions.
registrants meetingRegistrant collection Registrants of the online meeting.

JSON representation

The following JSON representation shows the resource type.

{
  "allowedRegistrant": { "@odata.type": "microsoft.graph.meetingAudience" },
  "description": "String",
  "endDateTime": "String (timestamp)",
  "registrationPageViewCount": "Int32",
  "registrationPageWebUrl": "String",
  "speakers": [{ "@odata.type": "microsoft.graph.meetingSpeaker" }],
  "startDateTime": "String (timestamp)",
  "subject": "String"
}