简要描述:
- 获取待审核视频或帖子
请求URL:
plugin.circle.frontend.circle-invitation.review-invitation-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
circle_id | 是 | int | 圈子id |
返回示例:
正确时返回:
{
"result": 1,
"msg": "获取成功",
"data": {
"total": 2,
"per_page": 15,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 2,
"data": [
{
"id": 6,
"uniacid": 1,
"member_id": 163781,
"circle_id": 12,
"is_review": 0,
"is_top": 0,
"is_recommend": 0,
"browse_count": 0,
"title": "标题",
"content": "内容",
"is_show": 1,
"store": 12,
"goods_id": 13,
"img": "1.png",
"status": 2,
"created_at": "2021-02-26 17:05:00",
"updated_at": "2021-03-01 11:42:01",
"deleted_at": null,
"nickname": "测试232"
},
{
"id": 7,
"uniacid": 1,
"member_id": 163781,
"circle_id": 12,
"is_review": 0,
"is_top": 0,
"is_recommend": 0,
"browse_count": 0,
"title": "标题",
"content": "内容",
"is_show": 1,
"store": 12,
"goods_id": 13,
"img": "1.png",
"status": 2,
"created_at": "2021-02-26 17:09:09",
"updated_at": "2021-03-01 11:42:01",
"deleted_at": null,
"nickname": "测试232"
}
]
}
}
错误时返回:
{
"result": 0,
"msg": "error",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
list[data][member_id] | number | 发布会员id |
list[data][circle_id] | number | 圈子id |
list[data][is_review] | number | 审核状态:0待审核,1审核通过,2审核驳回 |
list[data][is_top] | number | 是否置顶:1推荐,0正常 |
list[data][is_recommend] | number | 是否推荐:1推荐,0正常 |
list[data][browse_count] | number | 帖子浏览量 |
list[data][title] | string | 标题 |
list[data][content] | string | 内容 |
list[data][is_show] | string | 未加入可见:0不可见,1可见 |
list[data][store] | string | 关联门店id |
list[data][goods_id] | string | 关联商品id |
list[data][img] | string | 图片 |
备注:
- 更多返回错误代码请看首页的错误代码描述