蓝赞活动开发者API


创建内容

<p>[TOC]</p> <h4>简要描述</h4> <ul> <li>创建内容接口</li> </ul> <h4>请求路径</h4> <ul> <li><code>/appSite/content/add</code></li> </ul> <h4>请求方式</h4> <ul> <li><code>post</code> </li> </ul> <h4>请求参数</h4> <h5>Headers</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">参数值</th> <th style="text-align: left;">必选</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">Content-Type</td> <td style="text-align: left;">application/json</td> <td style="text-align: left;">是</td> <td>string</td> <td>--</td> </tr> <tr> <td style="text-align: left;">Authorization</td> <td style="text-align: left;">eyJhbGciOiJIUzUxMiJ9.ey</td> <td style="text-align: left;">是</td> <td>string</td> <td>登录授权后返回的token</td> </tr> </tbody> </table> <h5>Body</h5> <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;">catId</td> <td style="text-align: left;">是</td> <td style="text-align: left;">int</td> <td>栏目id</td> </tr> <tr> <td style="text-align: left;">contentTitle</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>内容名称</td> </tr> <tr> <td style="text-align: left;">[自定义属性xxx-别名]</td> <td style="text-align: left;">是</td> <td style="text-align: left;">any</td> <td>字段类型与约束,需要与模型配置一致</td> </tr> </tbody> </table> <h5>请求示例</h5> <pre><code>{ &amp;quot;catId&amp;quot;: 10, &amp;quot;contentTitle&amp;quot;: &amp;quot;我是自定义模型云相册&amp;quot;, &amp;quot;title&amp;quot;: &amp;quot;我的云相册&amp;quot;, &amp;quot;pic_urls&amp;quot;: [ &amp;quot;http://www.xxx.xx/xxx.jpg&amp;quot; ], &amp;quot;capture_time&amp;quot;: &amp;quot;2024-08-02 18:00:00&amp;quot;, &amp;quot;capture_time2&amp;quot;: { &amp;quot;start&amp;quot;: &amp;quot;2024-08-02 18:00:00&amp;quot;, &amp;quot;end&amp;quot;: &amp;quot;2024-08-02 20:00:00&amp;quot; } }</code></pre> <h5>返回示例</h5> <pre><code>{ &amp;quot;msg&amp;quot;: &amp;quot;创建成功!&amp;quot;, &amp;quot;code&amp;quot;: 200, &amp;quot;data&amp;quot;: { &amp;quot;catId&amp;quot;: 10, &amp;quot;createTime&amp;quot;: &amp;quot;2024-08-13 14:38:02&amp;quot;, &amp;quot;modelId&amp;quot;: 20, &amp;quot;pic_urls&amp;quot;: [ &amp;quot;http://www.xxx.xx/xxx.jpg&amp;quot; ], &amp;quot;contentTitle&amp;quot;: &amp;quot;我是自定义模型云相册&amp;quot;, &amp;quot;id&amp;quot;: 48, &amp;quot;userId&amp;quot;: &amp;quot;1815270824836448258&amp;quot;, &amp;quot;capture_time&amp;quot;: &amp;quot;2024-08-02 18:00:00&amp;quot;, &amp;quot;capture_time2&amp;quot;: { &amp;quot;start&amp;quot;: &amp;quot;2024-08-02 18:00:00&amp;quot;, &amp;quot;end&amp;quot;: &amp;quot;2024-08-02 20:00:00&amp;quot; } } }</code></pre> <h5>返回参数说明</h5> <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;">id</td> <td style="text-align: left;">int</td> <td>内容ID</td> </tr> <tr> <td style="text-align: left;">userId</td> <td style="text-align: left;">string</td> <td>创建用户id</td> </tr> <tr> <td style="text-align: left;">catId</td> <td style="text-align: left;">int</td> <td>栏目id</td> </tr> <tr> <td style="text-align: left;">contentTitle</td> <td style="text-align: left;">string</td> <td>内容名称</td> </tr> <tr> <td style="text-align: left;">modelId</td> <td style="text-align: left;">int</td> <td>模型id</td> </tr> <tr> <td style="text-align: left;">createTime</td> <td style="text-align: left;">string</td> <td>创建时间</td> </tr> <tr> <td style="text-align: left;">updateTime</td> <td style="text-align: left;">string</td> <td>更新时间</td> </tr> <tr> <td style="text-align: left;">[自定义属性XX-别名]</td> <td style="text-align: left;">any</td> <td>绑定的模型属性值</td> </tr> </tbody> </table> <h5>备注</h5> <ul> <li>更多返回错误代码请看首页的错误代码描述</li> </ul>

页面列表

ITEM_HTML