call
Get a call using an integer or UUID identifier.
Arguments
Identifier for the call, as an integer or a UUID.
Returns
CallInterface!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 Call($id: ID!) {
call(id: $id) {
account {
...AccountTypeFragment
}
id
metadata {
...CallMetadataItemTypeFragment
}
tags {
...CallTagTypeFragment
}
}
}
Variables
{
"id": "74368300"
}
Response
{
"data": {
"call": {
"account": AccountType,
"id": "81753670",
"metadata": [CallMetadataItemType],
"tags": [CallTagType]
}
}
}