发送短信结果
<h5>发送短信结果</h5>
<ul>
<li>
<p>请求URL</p>
</li>
<li>
<p><a href="http://接口地址/api/phone/getSendSmsResult?Authorization=登录后返回authtokend的值&sendid=1">http://接口地址/api/phone/getSendSmsResult?Authorization=登录后返回authtokend的值&sendid=1</a></p>
</li>
<li>请求方法: GET</li>
</ul>
<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;">Authorization</td>
<td style="text-align: left;">登录后返回authtokend的值</td>
<td style="text-align: left;">必传</td>
<td>authtokend</td>
</tr>
<tr>
<td style="text-align: left;">sendid</td>
<td style="text-align: left;">上面返回的sendid</td>
<td style="text-align: left;">是</td>
<td>sendid</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;msg&quot;: &quot;success&quot;,
&quot;code&quot;: 1, /当code == 1 时,说明没有错误,其他为异常
&quot;data&quot;: { /数据
&quot;smsdata&quot;:{
&quot;send_id&quot;:15,
&quot;send_sub_at&quot;:&quot;2022-04-07T20:32:41.712815268+08:00&quot;,
&quot;send_sub_userid&quot;:18, /你的用户ID
&quot;send_sub_channel&quot;:&quot;17482b5bf7af002dee64a96db12a6e49&quot;,
&quot;send_userid&quot;:17, /用户ID
&quot;send_channel_id&quot;:0, /通道ID
&quot;send_developerid&quot;:0, /开发者UID
&quot;send_channel&quot;:&quot;9fc71e04a502db15d195a15363c4b093&quot;,
&quot;send_item_id&quot;:47, //项目ID
&quot;send_item_name&quot;:&quot;抖音&quot;, /项目标题
&quot;send_com&quot;:&quot;COM21&quot;, /端口号
&quot;send_phone&quot;:&quot;13800000000&quot;, //对应你的手机号 ,有手机号和项目ID基本可以确定是哪条表项了
&quot;send_acc_phone&quot;:&quot;10086&quot;, /接收手机号
&quot;send_content&quot;:&quot;11&quot;, /短信内容
&quot;send_com_at&quot;:&quot;0001-01-01T00:00:00Z&quot;,
&quot;send_status&quot;:0 /{&quot;已提交&quot;, &quot;已发送&quot;, &quot;已完成&quot;, &quot;已失败&quot;} send_status返回的结果,对应的数组下标,0为已提交,以此类推
/注意已发送是指已发送至卡商端,并非发送成功,已完成就是发送成功,已失败就是发送失败
}
</code></pre>
<h5>返回参数说明</h5>
<ul>
<li>成功返回参数,上面返回数据自己看就行</li>
<li>失败看msg提示就行</li>
</ul>