callRecord 资源类型

命名空间:microsoft.graph.callRecords

重要

Microsoft Graph版本下的 /beta API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

表示多个参与者之间的单个对等呼叫或组呼叫,有时称为联机会议。

方法

方法 返回类型 说明
获取 callRecord microsoft.graph.callRecords.callRecord 读取 callRecord 对象的属性和关系。
getPstnCalls microsoft.graph.callRecords.pstnCallLogRow 集合 列出 呼叫记录中的 pstnCallLogRow 对象。
getDirectRoutingCalls microsoft.graph.callRecords.directRoutingLogRow 集合 列出 呼叫记录的 directRoutingLogRow 对象。

属性

属性 类型 说明
endDateTime DateTimeOffset 最后一个用户离开呼叫的 UTC 时间。 DateTimeOffset 表示使用 ISO 8601 格式的日期和时间信息,并且始终处于 UTC 时间。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z
id String 呼叫记录的唯一标识符。 只读。
joinWebUrl String 与呼叫关联的会议 URL。 peerToPeer 呼叫记录类型可能不可用。
lastModifiedDateTime DateTimeOffset 创建呼叫记录的 UTC 时间。 DatetimeOffset 类型表示使用 ISO 8601 格式的日期和时间信息,并且始终采用 UTC 时间。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z
modalities modality 集合 调用中使用的所有形式的列表。 可取值为:unknownaudiovideovideoBasedScreenSharingdatascreenSharingunknownFutureValue
组织者 identitySet 组织方的身份。
participants identitySet 集合 调用中涉及的不同的标识列表。
startDateTime DateTimeOffset 第一个用户加入呼叫的 UTC 时间。 DatetimeOffset 类型表示使用 ISO 8601 格式的日期和时间信息,并且始终采用 UTC 时间。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z
type callType 指示呼叫的类型。 可取值为:unknowngroupCallpeerToPeerunknownFutureValue
version Int64 呼叫记录的单调递增版本。 与较低版本相比,ID 相同的较高版本呼叫记录包含其他数据。

关系

关系 类型 说明
会话 microsoft.graph.callRecords.session 集合 呼叫中涉及的会话列表。 对等呼叫通常只有一个会话,而组呼叫通常每个参与者至少具有一个会话。 只读。 可为 Null。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "endDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "joinWebUrl": "String",
  "lastModifiedDateTime": "String (timestamp)",
  "modalities": ["string"],
  "organizer": {"@odata.type": "microsoft.graph.identitySet"},
  "participants": [{"@odata.type": "microsoft.graph.identitySet"}],
  "startDateTime": "String (timestamp)",
  "type": "string",
  "version": 1024
}