media resource type

Namespace: microsoft.graph.callRecords

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 the media (audio, video, video-based screen-sharing, etc.) used in a call.

Properties

Property Type Description
label String How the media was identified during media negotiation stage.
callerDevice microsoft.graph.callRecords.deviceInfo Device information associated with the caller endpoint of this media.
callerNetwork microsoft.graph.callRecords.networkInfo Network information associated with the caller endpoint of this media.
calleeDevice microsoft.graph.callRecords.deviceInfo Device information associated with the callee endpoint of this media.
calleeNetwork microsoft.graph.callRecords.networkInfo Network information associated with the callee endpoint of this media.
streams microsoft.graph.callRecords.mediaStream collection Network streams associated with this media.

JSON representation

The following is a JSON representation of the resource.

{
  "label": "String",
  "callerDevice": {"@odata.type": "microsoft.graph.callRecords.deviceInfo"},
  "callerNetwork": {"@odata.type": "microsoft.graph.callRecords.networkInfo"},
  "calleeDevice": {"@odata.type": "microsoft.graph.callRecords.deviceInfo"},
  "calleeNetwork": {"@odata.type": "microsoft.graph.callRecords.networkInfo"},
  "streams": [{"@odata.type": "microsoft.graph.callRecords.mediaStream"}]
}