注销-申请
<p><strong>简要描述:</strong> </p>
<ul>
<li>申请注销账号, 所填写身份信息应与注册时的完全一致.</li>
<li>提交注销申请后, 登录接口将返回<code>注销生效时间</code>, 在此之前均可<code>取消申请</code></li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/api/v1/user/destroy-apply</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>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;">idcard</td>
<td style="text-align: left;">必选</td>
<td style="text-align: left;">string</td>
<td>身份证号, 不区分大小写</td>
</tr>
<tr>
<td style="text-align: left;">truename</td>
<td style="text-align: left;">必选</td>
<td style="text-align: left;">string</td>
<td>姓名</td>
</tr>
<tr>
<td style="text-align: left;">confirm</td>
<td style="text-align: left;">可选</td>
<td style="text-align: left;">bool</td>
<td><code>true</code>确认注销, <code>false</code>或未传递时仅检测身份证信息</td>
</tr>
</tbody>
</table>
<p><strong>身份验证: </strong></p>
<p><code>是</code></p>
<p><strong>返回示例</strong></p>
<pre><code># 成功
{
&quot;code&quot;: 0,
&quot;message&quot;: &quot;注销申请提交成功&quot;,
&quot;data&quot;: {
&quot;destroy_effect_at&quot;: &quot;2023-12-03 23:59:59&quot;
}
}
# 异常, 错误信息在data中
{
&quot;code&quot;: 422,
&quot;message&quot;:&quot;&quot;,
&quot;data&quot;: {
&quot;idcard&quot;: &quot;身份证号码校验未通过&quot;,
&quot;truename&quot;: &quot;姓名校验未通过&quot;
}
}</code></pre>