获取优惠券详情
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/coupon/find</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET <code>AUTH</code></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;">coupon_uid</td>
<td style="text-align: left;">require,>=0</td>
<td style="text-align: left;">int</td>
<td>唯一uid</td>
</tr>
</tbody>
</table>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;limit_type_payload_list&quot;: [//限制载荷数据列表 limit_type=1时为商品分类 limit_type=2时为商品
{
&quot;id&quot;: 21,
&quot;merchant_uid&quot;: 2241017519160001,
&quot;goods_sort_uid&quot;: 2411194399400120,
&quot;create_datetime&quot;: &quot;2024-11-19 12:13:14&quot;,
&quot;update_datetime&quot;: &quot;2024-11-19 12:13:14&quot;,
&quot;title&quot;: &quot;测试优惠券分类&quot;
}
],
&quot;id&quot;: 36,
&quot;merchant_uid&quot;: 2241017519160001,
&quot;coupon_uid&quot;: 2411194392700123,//唯一值
&quot;limit_type&quot;: 1,//使用限制:0=不限制,1=分类,2=商品
&quot;limit_type_payload&quot;: [
2411194399400120
],
&quot;title&quot;: &quot;测试优惠券&quot;,//名称
&quot;coupon_sort_uid&quot;: 2411186099100124,
&quot;stock_qty_switch&quot;: 0,//库存数限制:0=否,1=是
&quot;stock_qty&quot;: 100,//库存数
&quot;limit_price_switch&quot;: 1,//限制金额:0=否,1=是
&quot;limit_price&quot;: 1000,//限制金额(分)
&quot;expiry_type&quot;: 1,//有效期类型:0=不限制,1=天,2=指定日期
&quot;expiry_payload&quot;: &quot;100&quot;,//有效期类型载荷 expiry_type=1时为天 expiry_type=2时为日期时间戳
&quot;ban_switch&quot;: 0,//封禁:0=否,1=是
&quot;create_datetime&quot;: &quot;2024-11-19 12:12:07&quot;,
&quot;update_datetime&quot;: &quot;2024-11-19 12:27:52&quot;,
&quot;wechat_switch&quot;: 0//是否用于微信:0=否,1=是
},
&quot;code&quot;: 0
}</code></pre>