我要提币
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户注册接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/partner/v1/WalletOut</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<pre><code>{
&quot;amount&quot;: 100,//提现金额
&quot;chain_type&quot;: 1, // 协议 id
&quot;address&quot;: &quot;0x000xxx00xx&quot;, // 提现地址
&quot;upload_pic&quot;: &quot;http://address.png&quot; // 图片,没有的情况传空字符串
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;data&quot;: {
&quot;id&quot;: 1,
&quot;created_at&quot;: &quot;2024-02-05 01:25:37&quot;,
&quot;updated_at&quot;: &quot;2024-02-05 01:25:37&quot;,
&quot;deleted_at&quot;: null,
&quot;partner_id&quot;: 1,
&quot;order_no&quot;: &quot;240205012537230823&quot;, // 订单号
&quot;amount&quot;: &quot;100.00&quot;, // 提现金额
&quot;chain_type&quot;: 1, // 看 chain_type_title
&quot;address&quot;: &quot;0x000xxx00xx&quot;, // 提现地址
&quot;upload_pic&quot;: &quot;http:\/\/address.png&quot;, // 图片
&quot;state&quot;: 0, // 看 state_title
&quot;state_title&quot;: &quot;待处理&quot;, // 状态
&quot;chain_type_title&quot;: &quot;TEC20&quot; // 协议
},
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;ok&quot;
}</code></pre>