获取客服帐号列表,包括所有的客服帐号的客服ID、名称和头像。
**请求方式**: GET(**HTTPS**)
**请求地址**: https://qyapi.weixin.qq.com/cgi-bin/kf/account/list?access\_token=ACCESS\_TOKEN
**参数说明**:
| 参数 | 必须 | 类型 | 说明 |
| --- | --- | --- | --- |
| access\_token | 是 | string | 调用接口凭证 |
**权限说明**:
仅允许微信客服的Secret所获取的access\_token调用。
**返回结果**:
~~~
{ "errcode": 0, "errmsg": "ok", "account_list": [ { "open_kfid": "wkAJ2GCAAASSm4_FhToWMFea0xAFfd3Q", "name": "客服帐号名称", "avatar": "https://wework.qpic.cn/wwhead/duc2TvpEgSSjibPZlNR6chpx9W3dtd9Ogp8XEmSNKGa6uufMWn2239HUPuwIFoYYZ7Ph580FPvo8/0" } ]}
~~~
**参数说明**:
| 参数 | 类型 | 说明 |
| --- | --- | --- |
| errcode | int32 | 返回码 |
| errmsg | string | 错误码描述 |
| account\_list | obj\[\] | 帐号信息列表 |
| account\_list.open\_kfid | string | 客服帐号ID |
| account\_list.name | string | 客服帐号名称 |
| account\_list.avatar | string | 客服头像URL |