meetingRegistration resource type (deprecated)
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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"
}