callRecordingDetail
Get recording detail for a call and call recording.
Arguments
The voice vendor managing the call.
Unique ID of the call in the vendor's system.
Returns
CallRecordingDetailType!Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query CallRecordingDetail(
$vendor: VoiceVendor!,
$vendorRecordingId: ID!
) {
callRecordingDetail(
vendor: $vendor,
vendorRecordingId: $vendorRecordingId
) {
callDirection
callId
download {
...CallRecordingDownloadTypeFragment
}
endTime
events {
...CallRecordingDetailEventTypeFragment
}
fromPhoneNumber
primaryAgentEmail
startTime
toPhoneNumber
}
}
Variables
{
"vendor": "TWILIO",
"vendorRecordingId": "91866134"
}
Response
{
"data": {
"callRecordingDetail": {
"callDirection": "religious-such-air-tonight-performance",
"callId": "52483823",
"download": CallRecordingDownloadType,
"endTime": "2022-07-26T07:36:24.322005+00:00",
"events": [CallRecordingDetailEventType],
"fromPhoneNumber": "value-eat-especially-authority-run",
"primaryAgentEmail": "that-often-ok-usually-challenge",
"startTime": "2023-07-22T22:06:42.248246+00:00",
"toPhoneNumber": "least-class-sing-throw-key"
}
}
}