查询企业/团队码
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>企业》个人中心(首页)》加入企业/团队 查询企业/团队码 接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>192.168.110.208:8655/api/enterprise/perHomePage/corpCode</code></li>
</ul>
<h5>请求方式 JSON格式 需要加密</h5>
<ul>
<li>POST </li>
</ul>
<pre><code> {
&quot;inviteCode&quot;:&quot;WDFR1478&quot;
}</code></pre>
<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;">inviteCode</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>企业邀请码</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 2000,
&quot;msg&quot;: &quot;Ok&quot;,
&quot;data&quot;: {
&quot;corpId&quot;: 10,
&quot;inviteCode&quot;: &quot;WDFR1478&quot;,
&quot;companyName&quot;: &quot;小麦测试企业2&quot;
}
}</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;">corpId</td>
<td style="text-align: left;">int</td>
<td>企业的id</td>
</tr>
<tr>
<td style="text-align: left;">inviteCode</td>
<td style="text-align: left;">String</td>
<td>邀请码</td>
</tr>
<tr>
<td style="text-align: left;">companyName</td>
<td style="text-align: left;">String</td>
<td>企业名称</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>