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!Possible Errors
Allowed Viewers
Required Permissions
Can query callsQuery Complexity
2Examples
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
endTime
events {
...CallRecordingDetailEventTypeFragment
}
fromPhoneNumber
primaryAgentEmail
startTime
toPhoneNumber
}
}
Variables
{
"vendor": "TWILIO",
"vendorRecordingId": "57004760"
}
Response
{
"data": {
"callRecordingDetail": {
"callDirection": "fight-human-situation-raise-manage",
"callId": "96928559",
"endTime": "2021-12-07T01:29:45.924687+00:00",
"events": [CallRecordingDetailEventType],
"fromPhoneNumber": "him-news-yes-player-reveal",
"primaryAgentEmail": "school-rock-current-type-over",
"startTime": "1999-04-01T19:46:41.822777+00:00",
"toPhoneNumber": "visit-Republican-would-reflect-last"
}
}
}