呼出服务量                                    
                    GET /apiv2/voice/agent_outbound_stats.json
Query参数
| Name | Required | Type | Comment | 
|---|
| created_start | 是 | number | 起始时间 | 
| created_end | 是 | number | 截止时间 | 
| group_id | 否 | number | 客服组ID | 
调用权限
admin
curl 示例
curl https://{subdomain}.kf5.com/apiv2/voice/agent_outbound_stats.json?created_start=20170703&created_end=20170726 \
        -v -u {email_address}:{password}| Name | Type | Read-only | Comment | 
|---|
| agent_id | integer | yes | 语音账号ID | 
| agent_name | string | yes | 客服名称 | 
| total | integer | yes | 呼出量 | 
| answer | string | yes | 接通量 | 
| answer_rate | integer | yes | 接通率 | 
| callduration | integer | yes | 通话时长 | 
| avg_callduration | integer | yes | 平均通话时长 | 
| agent_user_id | string | yes | 客服UID | 
返回示例
Status: 200 OK{
    "agent_outbound_stats": [
        {
            "agentid": 1043,
            "agent_user_id": 183421,
            "agent_name": 小南,
            "total": 5,
            "answer": 0,
            "answer_rate": "0%",
            "callduration": 0,
            "avg_callduration": 0
        }
    ]}