049 老板邀请员工
<h5>请求URL</h5>
<ul>
<li><code>http://happysell.com/api/job/boss_invite_work</code></li>
</ul>
<h6>注: 在 job_company_invite 表中生成邀请记录</h6>
<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;">work_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>员工ID</td>
</tr>
</tbody>
</table>
<pre><code>正常操作
{
&quot;code&quot;: 1,
&quot;info&quot;: &quot;success&quot;,
&quot;data&quot;: &quot;196&quot;
}
如邀请的不是无归属用户
{
&quot;code&quot;: 0,
&quot;info&quot;: &quot;Please invite users who have not joined the company&quot;,
&quot;data&quot;: {}
}
邀请的用户不存在
{
&quot;code&quot;: 0,
&quot;info&quot;: &quot;The member does not exist&quot;,
&quot;data&quot;: {}
}
</code></pre>