重启设备
<h5>简要描述</h5>
<ul>
<li>远程重启车位锁</li>
</ul>
<h5>接口状态</h5>
<ul>
<li>已完成</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://{{host}}/api/v3/lock/reboot</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>post</li>
</ul>
<h5>Header</h5>
<table>
<thead>
<tr>
<th>header</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>Authorization</td>
<td>JXU4RkQ5</td>
<td>是</td>
<td>string</td>
<td>接口权限检测用</td>
</tr>
</tbody>
</table>
<h5>请求参数示例</h5>
<pre><code>{
&quot;SnList&quot;: [
&quot;4E5446344700000F00620030&quot;,
&quot;4E5446344700000F00620032&quot;
],
&quot;RebootType&quot;: 1
}</code></pre>
<h5>请求json字段说明</h5>
<table>
<thead>
<tr>
<th>字段名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>SnList</td>
<td>是</td>
<td>array</td>
<td>要控制的车位序列号,可多个,最多批量控制为20台</td>
</tr>
<tr>
<td>SnList</td>
<td>是</td>
<td>string</td>
<td>车位序列号</td>
</tr>
<tr>
<td>RebootType</td>
<td>是</td>
<td>string</td>
<td>重启方式,具体详阅本页枚举表</td>
</tr>
</tbody>
</table>
<h5>成功返回示例</h5>
<pre><code>{
&quot;Message&quot;: &quot;调用完成&quot;,
&quot;Status&quot;: 0,
&quot;Value&quot;: [
{
&quot;Sn&quot;: &quot;4E5446344700000F00620030&quot;,
&quot;Result&quot;: 0,
&quot;Msg&quot;: &quot;Success&quot;
},
{
&quot;Sn&quot;: &quot;4E5446344700000F00620032&quot;,
&quot;Result&quot;: 1,
&quot;Msg&quot;: &quot;设备未在线或不存在&quot;
}
],
&quot;ErrCode&quot;: 0
}</code></pre>
<h5>失败返回示例</h5>
<p>复制<code>{ &quot;Message&quot;: &quot;调用完成&quot;, &quot;Status&quot;: 0, &quot;Value&quot;: [ { &quot;Sn&quot;: &quot;4E5446344700000F00620030&quot;, &quot;Result&quot;: 1, &quot;Msg&quot;: &quot;设备未在线或不存在&quot; }, { &quot;Sn&quot;: &quot;4E5446344700000F00620032&quot;, &quot;Result&quot;: 1, &quot;Msg&quot;: &quot;设备未在线或不存在&quot; } ], &quot;ErrCode&quot;: 0 }</code></p>
<h5>备注</h5>