callRecording resource type

Namespace: microsoft.graph

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.

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.
meetingOrganizer identitySet The identity information of the organizer of the onlineMeeting related to this recording. Read-only.
recordingContentUrl String The URL that 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",
  "meetingOrganizer": {"@odata.type": "microsoft.graph.identitySet"},
  "recordingContentUrl": "String"
}