枚举已授权的商户清单
<p><strong>简要描述:</strong> </p>
<ul>
<li>查询第三方应用已被授权的商户信息清单,包括对每个商户有关信息(打印机列表、打印队列等)的访问授权token</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>https://api.open.feyin.net/app/{appid}/members?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;">appid</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">应用id</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<p>正常情况下,飞印平台返回商家的详细信息,</p>
<pre><code>[
{
&quot;uid&quot;: &quot;5a58867e0aca3027f742a4de&quot;,
&quot;name&quot;: &quot;用户的名称1&quot;,
&quot;created_at&quot;: &quot;2018-01-12 17:57:18&quot;
},
{
&quot;uid&quot;: &quot;938w8867e8ujd3027f741992j&quot;,
&quot;name&quot;: &quot;用户的名称2&quot;,
&quot;created_at&quot;: &quot;2018-01-17 17:57:28&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>授权用户的id</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;">created_at</td>
<td style="text-align: left;">string</td>
<td>授权时间</td>
</tr>
</tbody>
</table>
<p>错误时飞印开放平台会返回错误码等信息,JSON数据详见“[全局返回码说明](<a href="https://www.showdoc.cc/1687352?page_id=137418124005771">https://www.showdoc.cc/1687352?page_id=137418124005771</a> "全局返回码说明")”</p>