5.2 员工客户管理统计
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>员工客户管理接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://lietou.xx.local/api/mscrm/user_customer_census</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>Get </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">userid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户userid</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 20000,
&quot;data&quot;: [
{
&quot;userid&quot;: &quot;ZhaoMingMing&quot;,
&quot;name&quot;: &quot;赵明明&quot;,
&quot;mobile&quot;: &quot;13811420929&quot;,
&quot;position&quot;: &quot;猎头总监&quot;,
&quot;customer_num&quot;: 7,
&quot;customer_deliver_num&quot;: 14
},
{
&quot;userid&quot;: &quot;ZhouXiaoJie&quot;,
&quot;name&quot;: &quot;周晓杰&quot;,
&quot;mobile&quot;: &quot;18519665520&quot;,
&quot;position&quot;: &quot;高级猎头顾问&quot;,
&quot;customer_num&quot;: 4,
&quot;customer_deliver_num&quot;: 3
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">userid</td>
<td style="text-align: left;">int</td>
<td>用户userid</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td style="text-align: left;">int</td>
<td>姓名</td>
</tr>
<tr>
<td style="text-align: left;">position</td>
<td style="text-align: left;">int</td>
<td>职位</td>
</tr>
<tr>
<td style="text-align: left;">customer_num</td>
<td style="text-align: left;">int</td>
<td>客户总数</td>
</tr>
<tr>
<td style="text-align: left;">customer_deliver_num</td>
<td style="text-align: left;">int</td>
<td>客户交付项目总数</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>