Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 2.89 KB

File metadata and controls

67 lines (50 loc) · 2.89 KB
title meetingRegistrationBase resource type
description Contains information about base meeting registration.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
toc.title Meeting Registration Base resource type (deprecated)
ms.date 07/22/2024

meetingRegistrationBase resource type (deprecated)

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Caution

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

Represents base registration details of an online meeting.

Base type of meetingRegistration and externalMeetingRegistration.

Tip

This is an abstract type and cannot be used directly. Use the derived type meetingRegistration or externalMeetingRegistration instead.

Properties

Property Type Description
allowedRegistrant meetingAudience Specifies who can register for 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. Do not use.

Relationships

Relationship Type Description
registrants meetingRegistrantBase collection Registrants of the online meeting.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.meetingRegistrationBase",
  "allowedRegistrant": "String",

  "registrants": [{ "@odata.type": "microsoft.graph.meetingRegistrantBase" }]
}