callTranscripts
Get all non-deleted transcripts for the given call, newest first. In-progress and failed transcripts are included for diagnostic visibility but their download field will be null.
Arguments
Possible Errors
Allowed Viewers
Required Permissions
Can query call transcriptsQuery 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 CallTranscripts(
$after: String,
$before: String,
$callId: ID!,
$first: Int,
$last: Int
) {
callTranscripts(
after: $after,
before: $before,
callId: $callId,
first: $first,
last: $last
) {
edgeCount
edges {
...CallTranscriptConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"callId": "71029019",
"first": 10,
"last": 10
}
Response
{
"data": {
"callTranscripts": {
"edgeCount": 90,
"edges": [CallTranscriptConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 42
}
}
}