快捷支付-获取手机验证码
<p><strong>请求方法名:</strong> </p>
<ul>
<li><code>GetVaildCode</code></li>
</ul>
<p><strong>接口说明</strong>
极少三方支付商支持的一种线上支付的,银联快捷支付。提交卡号,金额等信息到银联以后,下发验证码到会员手机,会员填写验证码,发送给银联以后,交易成功!</p>
<p><strong>请求参数样例:</strong> </p>
<pre><code>{
&quot;PhoneNum&quot;:&quot;13456454564&quot;,
&quot;Id&quot;:12,
&quot;Amount&quot;:100
} </code></pre>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET/POST </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;">PhoneNum</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">否</td>
<td>手机号</td>
</tr>
<tr>
<td style="text-align: left;">Id</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">否</td>
<td>快捷支付通道编号ID</td>
</tr>
<tr>
<td style="text-align: left;">Amount</td>
<td style="text-align: left;">double</td>
<td style="text-align: left;">否</td>
<td>支付金额</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;Status&quot;: true,
&quot;Info&quot;: &quot;发送成功!&quot;,
&quot;Data&quot;: &quot;&quot;,
&quot;Code&quot;: 0
}</code></pre>