呼叫系统API


登录

<p>登陆</p> <p><strong>简要描述:</strong></p> <ul> <li> <h1>用户登录</h1> </li> </ul> <p><strong>请求URL:</strong></p> <ul> <li><code>http://xx.com/login</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>POST</li> </ul> <p><strong>参数:</strong></p> <h4>登陆的请求头 headers 中 access_token为空</h4> <table> <thead> <tr> <th>参数名</th> <th>必选</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>name</td> <td>是</td> <td>string</td> <td>用户名</td> </tr> <tr> <td>passwd</td> <td>是</td> <td>string</td> <td>密码:md5加密传输</td> </tr> <tr> <td>verifyCode</td> <td>是</td> <td>验证码</td> <td>网页登陆使用验证码图片的数值,接口调用使用 系统设置中的序列号</td> </tr> </tbody> </table> <p><strong>返回示例</strong></p> <pre><code>{ code: 0, msg: &amp;quot;超级管理员登录成功&amp;quot;, data: { role: &amp;quot;super_admin&amp;quot;,//super_admin:超级管理员;admin:管理员;agent:坐席 access_token: &amp;quot;eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE1NTg0NjQ2MDU3NzksInNlc3Npb24iOnsic3VwZXJfYWRtaW4iOjF9LCJpYXQiOjE1NTg0MjE0MDU3Nzl9._6dCl8Rp5s-OWf1VnkS9naWmdlMqamxgPvqbdZZ0iSg&amp;quot; } }</code></pre> <p><strong>返回参数说明</strong></p> <table> <thead> <tr> <th>参数名</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>role</td> <td>string</td> <td>角色,super_admin:超级管理员;admin:管理员;agent:坐席</td> </tr> <tr> <td>access_token</td> <td>string</td> <td>访问令牌</td> </tr> </tbody> </table> <hr /> <p><strong>简要描述:</strong></p> <ul> <li> <h1>获取登陆验证码</h1> </li> </ul> <p><strong>请求URL:</strong></p> <ul> <li><code>http://xx.com/verifyCode</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>GET</li> </ul> <p><strong>参数:</strong></p> <h4>无参,不需要传请求头</h4> <p><strong>返回示例:</strong></p> <h4>返回结果为一张图片</h4> <hr /> <p><strong>简要描述:</strong></p> <ul> <li> <h1>获取用户权限</h1> </li> </ul> <p><strong>请求URL:</strong></p> <ul> <li><code>http://xx.com/menu/info</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>POST</li> </ul> <p><strong>参数:</strong></p> <ul> <li>无参,只需传请求头access_token</li> </ul> <p><strong>返回示例</strong></p> <pre><code>{ &amp;quot;msg&amp;quot;: &amp;quot;success&amp;quot;, &amp;quot;code&amp;quot;: 0, &amp;quot;data&amp;quot;: { &amp;quot;name&amp;quot;: &amp;quot;test&amp;quot;, &amp;quot;decrypt&amp;quot;: &amp;quot;none&amp;quot;, &amp;quot;hideTel&amp;quot;: &amp;quot;none&amp;quot;, &amp;quot;allow_down&amp;quot;: true, &amp;quot;allow_inspection&amp;quot;: true, &amp;quot;permission&amp;quot;: 1 } }</code></pre> <p><strong>返回参数说明</strong></p> <table> <thead> <tr> <th>参数名</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>name</td> <td>string</td> <td>用户名</td> </tr> <tr> <td>decrypt</td> <td>string</td> <td>号码加密字符,由超管设置,级别一级,控制管理员和坐席,none:不加密,hide:隐藏中间四位;md5:MD5加密</td> </tr> <tr> <td>hideTel</td> <td>string</td> <td>号码加密字符,由管理员设置,级别二级,控制坐席,none:不加密,hide:隐藏中间四位;md5:MD5加密</td> </tr> <tr> <td>allow_down</td> <td>string</td> <td>管理员设置,是否支持坐席下载数据</td> </tr> <tr> <td>allow_inspection</td> <td>string</td> <td>管理员设置,是否支持坐席质检录音</td> </tr> <tr> <td>permission</td> <td>string</td> <td>用户权限,1:全局,2:项目,3:标签组,4:个人</td> </tr> </tbody> </table> <p><strong>简要描述:</strong></p> <ul> <li> <h1>获取菜单</h1> </li> </ul> <p><strong>请求URL:</strong></p> <ul> <li><code>http://xx.com/menu/get?own=null</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>get</li> <li>admin登陆时own可以是super_admin</li> </ul> <p><strong>返回示例</strong></p> <pre><code>{ &amp;quot;msg&amp;quot;:&amp;quot;success&amp;quot;, &amp;quot;code&amp;quot;:0, &amp;quot;data&amp;quot;:[ { &amp;quot;name&amp;quot;:&amp;quot;management&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;数据管理&amp;quot;, &amp;quot;icon&amp;quot;:&amp;quot;layui-icon-table&amp;quot;, &amp;quot;list&amp;quot;:[ { &amp;quot;name&amp;quot;:&amp;quot;cust_info&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;客户信息&amp;quot;, &amp;quot;jump&amp;quot;:&amp;quot;management/cust_info&amp;quot; }, { &amp;quot;name&amp;quot;:&amp;quot;record&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;录音质检&amp;quot;, &amp;quot;jump&amp;quot;:&amp;quot;management/record&amp;quot; }, { &amp;quot;name&amp;quot;:&amp;quot;cust_cdr&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;客户话单&amp;quot;, &amp;quot;jump&amp;quot;:&amp;quot;management/cust_cdr&amp;quot; } ] }, { &amp;quot;name&amp;quot;:&amp;quot;chart&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;报表&amp;quot;, &amp;quot;icon&amp;quot;:&amp;quot;layui-icon-chart&amp;quot;, &amp;quot;list&amp;quot;:[ { &amp;quot;name&amp;quot;:&amp;quot;agent_report&amp;quot;, &amp;quot;title&amp;quot;:&amp;quot;坐席报表&amp;quot;, &amp;quot;jump&amp;quot;:&amp;quot;chart/agent_report&amp;quot; } ] } ] }</code></pre> <p>|</p> <p><strong>备注</strong></p> <ul> <li>更多返回错误代码请看首页的错误代码描述</li> </ul>

页面列表

ITEM_HTML