callRecording resource type
Namespace: microsoft.graph
Represents a recording associated with an online meeting.
Methods
Method | Return Type | Description |
---|---|---|
List | callRecording collection | Get the list of callRecording objects associated with a scheduled onlineMeeting. |
Get | callRecording | Get a callRecording object associated with a scheduled onlineMeeting. |
Get delta by organizer | callRecording collection | Get a set of callRecording resources that were added for onlineMeeting instances organized by the specified user. |
List recordings by organizer | callRecording collection | Get the callRecording objects for all the onlineMeeting instances organized by the specified user. |
Properties
Property | Type | Description |
---|---|---|
callId | String | The unique identifier for the call that is related to this recording. Read-only. |
content | Stream | The content of the recording. Read-only. |
contentCorrelationId | String | The unique identifier that links the transcript with its corresponding 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. |
endDateTime | DateTimeOffset | Date and time at which the recording ends. 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.
{
"callId": "String",
"content": "Stream",
"contentCorrelationId": "String",
"createdDateTime": "String (timestamp)",
"endDateTime": "String (timestamp)",
"id": "String (identifier)",
"meetingId": "String",
"meetingOrganizer": {"@odata.type": "microsoft.graph.identitySet"},
"recordingContentUrl": "String"
}