新用户领取奖励接口
<h1>邀请活动接口</h1>
<h2>POST 新用户领取奖励接口</h2>
<p>POST /uc/deduction/activity/new_member_receive</p>
<p>> 返回示例</p>
<p>> 异常</p>
<pre><code class="language-json">{
&quot;data&quot;: null,
&quot;code&quot;: 500,
&quot;message&quot;: &quot;该用户不是新用户!&quot;,
&quot;totalPage&quot;: null,
&quot;totalElement&quot;: null
}</code></pre>
<pre><code class="language-json">{
&quot;data&quot;: null,
&quot;code&quot;: 500,
&quot;message&quot;: &quot;请先完成一笔交易!&quot;,
&quot;totalPage&quot;: null,
&quot;totalElement&quot;: null
}</code></pre>
<pre><code class="language-json">{
&quot;data&quot;: null,
&quot;code&quot;: 500,
&quot;message&quot;: &quot;该奖励已经领取,请勿再次领取!&quot;,
&quot;totalPage&quot;: null,
&quot;totalElement&quot;: null
}</code></pre>
<p>> 成功</p>
<pre><code class="language-json">{
&quot;data&quot;: null,
&quot;code&quot;: 0,
&quot;message&quot;: &quot;SUCCESS&quot;,
&quot;totalPage&quot;: null,
&quot;totalElement&quot;: null
}</code></pre>
<h3>返回结果</h3>
<table>
<thead>
<tr>
<th>状态码</th>
<th>状态码含义</th>
<th>说明</th>
<th>数据模型</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td><a href="https://tools.ietf.org/html/rfc7231#section-6.3.1">OK</a></td>
<td>成功</td>
<td>Inline</td>
</tr>
</tbody>
</table>
<h3>返回数据结构</h3>
<p>状态码 <strong>0</strong></p>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>必选</th>
<th>约束</th>
<th>中文名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>» data</td>
<td>null</td>
<td>true</td>
<td>none</td>
<td>none</td>
</tr>
<tr>
<td>» code</td>
<td>integer</td>
<td>true</td>
<td>none</td>
<td>提示码</td>
<td>none</td>
</tr>
<tr>
<td>» message</td>
<td>string</td>
<td>true</td>
<td>none</td>
<td>提示信息</td>
<td>none</td>
</tr>
<tr>
<td>» totalPage</td>
<td>null</td>
<td>true</td>
<td>none</td>
<td>none</td>
</tr>
<tr>
<td>» totalElement</td>
<td>null</td>
<td>true</td>
<td>none</td>
<td>none</td>
</tr>
</tbody>
</table>