查询已授权商户信息
<p><strong>简要描述:</strong> </p>
<ul>
<li>查询已授权商户的信息,包括该商户的内部id、名称、账号以及打印机列表。</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>https://api.open.feyin.net/member/{uid}?access_token=ACCESS_TOKEN</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET </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>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">uid</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">需要查看的商户的id, 商户id可以从 “[查询授权商户的全部信息](<a href="https://www.showdoc.cc/1687352?page_id=83245162775674">https://www.showdoc.cc/1687352?page_id=83245162775674</a> "查询授权商户的全部信息")” 接口获得</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;uid&quot;: &quot;fb58abf0eb8111e68c6c52540008b6e6&quot;,
&quot;name&quot;: &quot;测试商户&quot;,
&quot;devices&quot;: [
{
&quot;device_no&quot;: &quot;4600408762124261&quot;,
&quot;model&quot;: &quot;GP-2290XIII&quot;,
&quot;memo&quot;: &quot;广州天河店&quot;
},
{
&quot;device_no&quot;: &quot;4600408903129252&quot;,
&quot;model&quot;: &quot;GP-2330IIC&quot;,
&quot;memo&quot;: &quot;北京三里屯店&quot;
}
]
}</code></pre>
<p><strong>返回参数说明</strong></p>
<p>返回数据类型: JSON对象</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;">uid</td>
<td style="text-align: left;">string</td>
<td>商户编码</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td style="text-align: left;">string</td>
<td>商户名称</td>
</tr>
<tr>
<td style="text-align: left;">devices</td>
<td style="text-align: left;">[device]</td>
<td>打印机列表</td>
</tr>
</tbody>
</table>
<p><strong><em> device </em></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;">device_no</td>
<td style="text-align: left;">string</td>
<td>设备编码</td>
</tr>
<tr>
<td style="text-align: left;">model</td>
<td style="text-align: left;">string</td>
<td>设备型号,不同型号的设备支持的功能不一样,详见“[打印机接口功能说明](<a href="https://www.showdoc.cc/1687352?page_id=82682858527453">https://www.showdoc.cc/1687352?page_id=82682858527453</a> "打印机接口功能说明")”</td>
</tr>
<tr>
<td style="text-align: left;">memo</td>
<td style="text-align: left;">string</td>
<td>商户对这个设备的自定义备注</td>
</tr>
</tbody>
</table>