扫码收款
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/order/payee/scan</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST <code>AUTH</code></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;">out_trade_no</td>
<td style="text-align: left;">require,>=:0,integer</td>
<td style="text-align: left;">int</td>
<td>订单号</td>
</tr>
<tr>
<td style="text-align: left;">pay_uid</td>
<td style="text-align: left;">require,>=:0,integer</td>
<td style="text-align: left;">int</td>
<td>支付方式uid</td>
</tr>
<tr>
<td style="text-align: left;">auth_code</td>
<td style="text-align: left;">require,startWithMany:1,2</td>
<td style="text-align: left;">int</td>
<td>条形码(1开头=微信或2开头=支付宝)</td>
</tr>
</tbody>
</table>
<ul>
<li>微信用户付款码规则:18位纯数字,前缀以10、11、12、13、14、15开头</li>
<li>支付宝户付款码规则:25~30开头的长度为16~24位的数字</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot; order success pay inprocess&quot;,
&quot;data&quot;: {
&quot;outside_keyword&quot;: &quot;scan_alipay&quot;,//scan_alipay=支付宝 scan_wechat=微信
},
&quot;code&quot;: 490001//待确认状态
}
{
&quot;msg&quot;: &quot;&quot;,
&quot;data&quot;: {
},
&quot;code&quot;: 1//失败
}
{
&quot;msg&quot;: &quot;&quot;,
&quot;data&quot;: {
},
&quot;code&quot;: 0//成功
}</code></pre>