获取单个客户添加的员工和客户群
<h5>简要描述</h5>
<ul>
<li>联系人信息,可根据该接口查询联系人(客户)添加的所有企微号wxid,以及进入的所有客户群的wxid.</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://oapi-yzj.miaokol.com/wechat/contactInfo</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;">app_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>APP ID</td>
</tr>
<tr>
<td style="text-align: left;">access_token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>Access Token</td>
</tr>
<tr>
<td style="text-align: left;">wxid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>联系人(客户)wxid</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>GET /wechat/contactInfo?app_id=xxx&amp;access_token=xxxx&amp;wxid=xxxx HTTP/1.1
Host:oapi-yzj.miaokol.com
content-type: application/x-www-form-urlencoded
</code></pre>
<h5>响应示例</h5>
<pre><code>HTTP/1.1 200 OK
Content-Type: application/x-www-form-urlencoded
{
&quot;data&quot;:{
&quot;rel_wxids&quot;:[//添加的企微号wxid
&quot;1688850320220535&quot;,
&quot;1688850863494126&quot;,
&quot;1688851193415882&quot;
],
&quot;room_wxids&quot;:[//当前所在客户群的wxid
&quot;R:10950860258535721&quot;,
&quot;R:10956342361970360&quot;
]
},
&quot;errcode&quot;:0
}
</code></pre>
<h5>响应说明</h5>
<ul>
<li>data类型为数组,数组项格式说明如下</li>
</ul>
<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;">rel_wxids</td>
<td style="text-align: left;">array</td>
<td>添加的所有企微号wxid</td>
</tr>
<tr>
<td style="text-align: left;">room_wxids</td>
<td style="text-align: left;">array</td>
<td>当前所在客户群的wxid,没进任何群时值为空数组:[]</td>
</tr>
</tbody>
</table>