获取商品举报/反馈类别
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取商品举报/反馈类别</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/v1/goods/report_category</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>get </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;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>获取的类别 1反馈 2举报</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": 0,
"msg": "获取成功",
"time": 1575620491,
"data": [
{
"report_type_id": 1000006,
"report_type_name": "色情低俗"
},
{
"report_type_id": 1000007,
"report_type_name": "外挂、私服软件类"
}
]
}
</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">report_type_name</td>
<td style="text-align: left;">string</td>
<td>举报类别名</td>
</tr>
<tr>
<td style="text-align: left;">report_type_id</td>
<td style="text-align: left;">int</td>
<td>举报类别id</td>
</tr>
</tbody>
</table>