callRecording resource type

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.

Represents a recording associated with an online meeting.

Methods

Method Return Type Description
List callRecordings callRecording collection Get the list of callRecording objects associated with a scheduled onlineMeeting.
Get callRecording callRecording Get a callRecording object associated with a scheduled onlineMeeting.
delta callRecording collection Get a set of callRecording resources that have been added for onlineMeeting instances organized by the specified user.
getAllRecordings callRecording collection Get the callRecording objects for all the onlineMeeting instances organized by the specified user.

Properties

Property Type Description
content Stream The content of the recording. Read-only.
createdDateTime DateTimeOffset Date and time at which the recording was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
id String The unique identifier for the recording. Read-only. Inherited from entity.
meetingId String The unique identifier of the onlineMeeting related to this recording. Read-only.
meetingOrganizerId String The unique identifier of the organizer of the onlineMeeting related to this recording. Read-only.
meetingOrganizer identitySet The identity information of the organizer of the onlineMeeting related to this recording. Read-only.
recordingContentUrl String The URL which can be used to access the content of the recording. Read-only.

JSON representation

The following JSON representation shows the resource type.

{
  "content": "Stream",
  "createdDateTime": "String (timestamp)",  
  "id": "String (identifier)",
  "meetingId": "String",
  "meetingOrganizerId": "String",
  "meetingOrganizer": {"@odata.type": "microsoft.graph.identitySet"},
  "recordingContentUrl": "String"
}