inboundCallAverageWaitTimeForAttributes
Get the average wait time for inbound calls with the given routing attributes. Note that calls with more attributes than those given will be included.
Arguments
Routing attribute references to filter calls by. Calls must have all of the given attributes to be included.
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 InboundCallAverageWaitTimeForAttributes($attributes: [String]!) {
inboundCallAverageWaitTimeForAttributes(attributes: $attributes) {
recent
yesterday
}
}
Variables
{
"attributes": "party-common-develop-do-last"
}
Response
{
"data": {
"inboundCallAverageWaitTimeForAttributes": {
"recent": 97,
"yesterday": 22
}
}
}