获取企微标签列表
<h5>简要描述</h5>
<ul>
<li>企微企业标签列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://oapi-yzj.miaokol.com/wechat/corpTags</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;">corp_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>企业ID(从<a href="<a href="https://www.showdoc.com.cn/1702411877508139/8401468472929720">企业列表接口</a>获取">https://www.showdoc.com.cn/1702411877508139/8401468472929720">企业列表接口</a>获取</a>)</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>GET /wechat/corpTags?app_id=xxx&amp;access_token=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/json; charset=UTF-8
{&quot;data&quot;:[{&quot;group_wxid&quot;:&quot;xxxx&quot;,&quot;group_name&quot;:&quot;xxxx&quot;,&quot;group_type&quot;:&quot;xxx&quot;,&quot;tags&quot;:[{&quot;wxid&quot;:&quot;xxxx&quot;,&quot;wx_name&quot;:&quot;xxx&quot;,&quot;type&quot;:&quot;xxx&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;">group_wxid</td>
<td style="text-align: left;">string</td>
<td>分组ID</td>
</tr>
<tr>
<td style="text-align: left;">group_name</td>
<td style="text-align: left;">string</td>
<td>分组名</td>
</tr>
<tr>
<td style="text-align: left;">group_type</td>
<td style="text-align: left;">string</td>
<td>分组类型</td>
</tr>
<tr>
<td style="text-align: left;">tags</td>
<td style="text-align: left;">array</td>
<td>分组下标签</td>
</tr>
<tr>
<td style="text-align: left;">tags[0].wxid</td>
<td style="text-align: left;">string</td>
<td>标签wxid</td>
</tr>
<tr>
<td style="text-align: left;">tags[0].wx_name</td>
<td style="text-align: left;">string</td>
<td>标签名称</td>
</tr>
<tr>
<td style="text-align: left;">tags[0].type</td>
<td style="text-align: left;">string</td>
<td>标签类型(1企业标签;2个人标签)</td>
</tr>
</tbody>
</table>