action zoom_get_call_log_metrics_details {
label: "Get call details from call log"
description: "Call logs provide a record of all incoming and outgoing calls over Zoom Phone in an account. \n\nUse this API to list call log details of a specific call. \n\n**Prerequisites:**\n* Business, or Education account\n* Zoom Phone license
\n\n**Scopes:** `phone:read:admin`, `phone:write:admin`
\n**Rate Limit Label:** `Light`\n"
provider: zoom
method: GET
path: "/phone/metrics/call_logs/{call_id}"
encoding: json
input: {
type: "object"
properties: {
call_id: {
type: "string"
}
}
required: ["call_id"]
additionalProperties: false
}
output: {
type: "object"
properties: {
call_id: {
type: "string"
description: "Unique identifier of the phone call."
}
callee: {
type: "object"
description: "Callee object contains information of the calee."
properties: {
codec: {
type: "string"
description: "Audio codec."
}
device_type: {
type: "string"
description: "Device type."
}
extension_number: {
type: "string"
description: "Full extension number of the callee."
}
headset: {
type: "string"
description: "Headset used for the call by the callee."
}
isp: {
type: "string"
description: "ISP."
}
microphone: {
type: "string"
description: "Microphone used for the call by the callee."
}
phone_number: {
type: "string"
description: "Phone number of the callee in E164 format."
}
site_id: {
type: "string"
description: "Unique identifier of the [site](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-multiple-sites)."
}
}
}
caller: {
type: "object"
description: "Caller object contains information of the caller."
properties: {
codec: {
type: "string"
description: "Audio codec."
}
device_type: {
type: "string"
description: "Device type."
}
extension_number: {
type: "string"
description: "Full extension number of the caller."
}
headset: {
type: "string"
description: "Headset used for the call by the caller."
}
isp: {
type: "string"
description: "ISP."
}
microphone: {
type: "string"
description: "Microphone used for the call by the caller."
}
phone_number: {
type: "string"
description: "Phone number of the caller in E164 format."
}
site_id: {
type: "string"
description: "Unique identifier of the [site](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-multiple-sites)."
}
}
}
date_time: {
type: "string"
description: "Date and time at which the call started."
}
direction: {
type: "string"
description: "Direction of the call. The value of this field can be either `internal` or `outbound`."
}
duration: {
type: "integer"
description: "Duration of the call in seconds."
}
mos: {
type: "string"
description: "Zoom uses Mean Opinion Score (MOS) as the main measurement to report on voice quality. MOS measures voice quality on a scale of 1 to 5. A score of 1 indicates unacceptable voice quality for all users. A score of 5 is the best voice quality."
}
}
}
}