黑白名单列表
<p>目录:</p>
<h4><a href="#blackContactList"><strong> 【黑名单列表】</strong></a></h4>
<h4><a href="#whiteContactList"><strong> 【白名单列表】</strong></a></h4>
<p><br></p>
<p><a id="blackContactList"></a></p>
<h3><strong> 获取黑名单列表</strong></h3>
<h5>请求URL</h5>
<ul>
<li><code>https://oapi-yzj.miaokol.com/wechat/blackContactList</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;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>页码,默认1</td>
</tr>
<tr>
<td style="text-align: left;">page_size</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>每页条数,默认10,最大100</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>GET /wechat/blackContactList?app_id=xxx&amp;access_token=xxxx&amp;page=1&amp;page_size=10 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
{
&quot;data&quot;:[
{
&quot;id&quot;:1149497,
&quot;user_id&quot;:21,
&quot;sub_user_id&quot;:0,
&quot;corp_id&quot;:0,
&quot;wxid&quot;:&quot;1111&quot;,
&quot;nickname&quot;:&quot;111&quot;,
&quot;nickname_pinyin&quot;:&quot;111&quot;,
&quot;avatar&quot;:&quot;&quot;,
&quot;gender&quot;:1,
&quot;wechat_type&quot;:2,
&quot;corp_wxid&quot;:&quot;111&quot;,
&quot;add_from&quot;:2,
&quot;ctime&quot;:1667978152,
&quot;utime&quot;:1667978152,
&quot;corp&quot;:{
&quot;id&quot;:42,
&quot;user_id&quot;:21,
&quot;sub_user_id&quot;:0,
&quot;corp_id&quot;:2,
&quot;wxid&quot;:&quot;1111&quot;,
&quot;verified&quot;:2,
&quot;full_name&quot;:&quot;1111&quot;,
&quot;short_name&quot;:&quot;111&quot;,
&quot;address&quot;:&quot;&quot;,
&quot;legal_person_name&quot;:&quot;111&quot;,
&quot;legal_person_wxid&quot;:&quot;1111&quot;,
&quot;logo&quot;:&quot;https:1111&quot;,
&quot;ctime&quot;:1635158651,
&quot;utime&quot;:1667465395
}
}
],
&quot;pager&quot;:{
&quot;page&quot;:1,
&quot;perPage&quot;:10,
&quot;numRecords&quot;:1,
&quot;numPages&quot;:1,
&quot;firstRecord&quot;:0,
&quot;lastRecord&quot;:0
},
&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;">wxid</td>
<td style="text-align: left;">string</td>
<td>黑名单成员wxid</td>
</tr>
<tr>
<td style="text-align: left;">nickname</td>
<td style="text-align: left;">string</td>
<td>黑名单成员昵称</td>
</tr>
<tr>
<td style="text-align: left;">avatar</td>
<td style="text-align: left;">string</td>
<td>黑名单成员头像</td>
</tr>
<tr>
<td style="text-align: left;">corp</td>
<td style="text-align: left;">object</td>
<td>黑名单成员所属企业信息</td>
</tr>
</tbody>
</table>
<p><br>
<a id="whiteContactList"></a></p>
<h3><strong> 获取白名单列表</strong></h3>
<h5>请求URL</h5>
<ul>
<li><code>https://oapi-yzj.miaokol.com/wechat/whiteContactList</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;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>页码,默认1</td>
</tr>
<tr>
<td style="text-align: left;">page_size</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>每页条数,默认10,最大100</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>GET /wechat/whiteContactList?app_id=xxx&amp;access_token=xxxx&amp;page=1&amp;page_size=10 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
{
&quot;data&quot;:[
{
&quot;id&quot;:1149497,
&quot;user_id&quot;:21,
&quot;sub_user_id&quot;:0,
&quot;corp_id&quot;:0,
&quot;wxid&quot;:&quot;1111&quot;,
&quot;nickname&quot;:&quot;111&quot;,
&quot;nickname_pinyin&quot;:&quot;111&quot;,
&quot;avatar&quot;:&quot;&quot;,
&quot;gender&quot;:1,
&quot;wechat_type&quot;:2,
&quot;corp_wxid&quot;:&quot;111&quot;,
&quot;add_from&quot;:2,
&quot;ctime&quot;:1667978152,
&quot;utime&quot;:1667978152,
&quot;corp&quot;:{
&quot;id&quot;:42,
&quot;user_id&quot;:21,
&quot;sub_user_id&quot;:0,
&quot;corp_id&quot;:2,
&quot;wxid&quot;:&quot;1111&quot;,
&quot;verified&quot;:2,
&quot;full_name&quot;:&quot;1111&quot;,
&quot;short_name&quot;:&quot;111&quot;,
&quot;address&quot;:&quot;&quot;,
&quot;legal_person_name&quot;:&quot;111&quot;,
&quot;legal_person_wxid&quot;:&quot;1111&quot;,
&quot;logo&quot;:&quot;https:1111&quot;,
&quot;ctime&quot;:1635158651,
&quot;utime&quot;:1667465395
}
}
],
&quot;pager&quot;:{
&quot;page&quot;:1,
&quot;perPage&quot;:10,
&quot;numRecords&quot;:1,
&quot;numPages&quot;:1,
&quot;firstRecord&quot;:0,
&quot;lastRecord&quot;:0
},
&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;">wxid</td>
<td style="text-align: left;">string</td>
<td>白名单成员wxid</td>
</tr>
<tr>
<td style="text-align: left;">nickname</td>
<td style="text-align: left;">string</td>
<td>白名单成员昵称</td>
</tr>
<tr>
<td style="text-align: left;">avatar</td>
<td style="text-align: left;">string</td>
<td>白名单成员头像</td>
</tr>
<tr>
<td style="text-align: left;">corp</td>
<td style="text-align: left;">object</td>
<td>白名单成员所属企业信息</td>
</tr>
</tbody>
</table>