付款状态确认
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/order/payee/verify</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>
</tbody>
</table>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot; order success pay inprocess&quot;,
&quot;data&quot;: {
},
&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>