解绑打印机
<p><strong>简要描述:</strong></p>
<ul>
<li>解绑打印机接口。重要接口,需要联系飞印客服进行开通,否则没有权限调用</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://my.feyin.net/api/v2/device/unbind</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST,JSON提交</li>
</ul>
<p><strong>参数:</strong> </p>
<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;">deviceNo</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>机器编号</td>
</tr>
<tr>
<td style="text-align: left;">memberCode</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>商户编码</td>
</tr>
<tr>
<td style="text-align: left;">reqTime</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">number</td>
<td>请求时间,unix时间戳,毫秒</td>
</tr>
<tr>
<td style="text-align: left;">securityCode</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>签名,把deviceNo,memberCode,reqTime,API_KEY 的值按顺序直接并接起来,做MD5加密</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code> {
&quot;memberCode&quot;: &quot;aaaaaf0eb8222228c6c5254000bbbbb&quot;,
&quot;deviceNo&quot;: &quot;4600408123456789&quot;,
&quot;reqTime&quot;: 1510541545156,
&quot;securityCode&quot;: &quot;005eabe86be0b7de3cee8cfbffeff96a&quot;
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;success&quot;: true,
&quot;errMsg&quot; : &quot;&quot;
}</code></pre>
<p><strong>返回参数说明</strong></p>
<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;">success</td>
<td style="text-align: left;">boolean</td>
<td>返回状态,true为成功,false为失败</td>
</tr>
<tr>
<td style="text-align: left;">errMsg</td>
<td style="text-align: left;">string</td>
<td>错误说明,当success为true时为空</td>
</tr>
</tbody>
</table>