RingCentral 通话记录 API Return 是否有 "Missed" 值?

Does the RingCentral Call Log API Return a "Missed" Value?

在 RingCentral 在线帐户门户 (https://service.ringcentral.com) 和端点应用程序中,通话记录显示显示来电是呼入、呼出还是未接。

在查看呼叫日志 API 的 API 参考时,它似乎只发回 "Direction" 的入站或出站。开发者 Call Log API return 是否有 "Missed" 值?是否有其他方法可以通过呼叫日志获取此信息API?

参考:https://developer.ringcentral.com/api-docs/latest/index.html#!#RefCallLog.html

此问题似乎与在线帐户门户 UI 的 "Type" 列有关,如屏幕截图所示:

网络 UI 的 "Type" 列显示入站、出站或错过。这可以通过使用 directionresult.

的响应属性生成
  • direction API 响应 属性 将是 InboundOutbound
  • result API 响应 属性 是一个枚举值,包括 Missed 和其他值,包括 Voicemail 这是示例屏幕截图。完整列表可在下面的 link 中找到:

参考:https://developer.ringcentral.com/api-docs/latest/index.html#!#ResultStatusValues

这是一个示例响应:

{
    "uri": "https://platform.ringcentral.com/restapi/v1.0/account/11111111/call-log?view=Simple&showBlocked=true&withRecording=false&dateFrom=2018-08-27T06:18:00.000Z&page=1&perPage=100",
    "records": [
        {
            "uri": "https://platform.ringcentral.com/restapi/v1.0/account/11111111/call-log/22222222?view=Simple",
            "id": "22222222",
            "sessionId": "33333333",
            "startTime": "2018-08-27T17:38:12.634Z",
            "duration": 27,
            "type": "Voice",
            "direction": "Inbound",
            "action": "Phone Call",
            "result": "Missed",
            "to": {
                "phoneNumber": "+16505550101"
            },
            "from": {
                "phoneNumber": "+16505550102",
                "name": "LOS ALTOS    CA",
                "location": "Los Altos, CA"
            }
        }
    ],
    ...
}

请阅读此blog以了解您可以从通话记录中找到的更多信息。