session 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 a user-user communication or a user-meeting communication in the case of a conference call.

Methods

Method Return Type Description
List sessions microsoft.graph.callRecords.session collection Retrieve the list of sessions associated with a callRecord object.

Properties

Property Type Description
callee microsoft.graph.callRecords.endpoint Endpoint that answered the session.
caller microsoft.graph.callRecords.endpoint Endpoint that initiated the session.
endDateTime DateTimeOffset UTC time when the last user left the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
failureInfo microsoft.graph.callRecords.failureInfo Failure information associated with the session if the session failed.
id string Unique identifier for the session. Read-only.
isTest Boolean Specifies whether the session is a test.
modalities microsoft.graph.callRecords.modality collection List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
startDateTime DateTimeOffset UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z

Relationships

Relationship Type Description
segments microsoft.graph.callRecords.segment collection The list of segments involved in the session. Read-only. Nullable.

JSON representation

The following JSON representation shows the resource type.

{  
  "callee": {"@odata.type": "microsoft.graph.callRecords.endpoint"},  
  "caller": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
  "endDateTime": "String (timestamp)",
  "failureInfo": {"@odata.type": "microsoft.graph.callRecords.failureInfo"},
  "id": "String (identifier)",
  "isTest": "Boolean",
  "modalities": ["string"],
  "startDateTime": "String (timestamp)"
}