简要描述:

  • 获取圈子用户信息

请求URL:

plugin.circle.frontend.circle-member.get-circle-memberList

参数名 是否必须 类型 说明
circle_id int 圈子id
is_review int 审核状态:0.待审核,1审核通过,2审核驳回
nickname string 会员昵称

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "获取成功",
    "data": {
        "total": 1,
        "per_page": 15,
        "current_page": 1,
        "last_page": 1,
        "next_page_url": null,
        "prev_page_url": null,
        "from": 1,
        "to": 1,
        "data": [
            {
                "id": 17,
                "uniacid": 1,
                "member_id": 163781,
                "circle_id": 12,
                "is_review": 1,
                "created_at": "2021-02-25 11:57:06",
                "updated_at": null,
                "deleted_at": null,
                "name": "测试232",
                "header_img": "http://thirdwx.qlogo.cn/mmopen/cEM5JWyl9FekStW90tfVx0KaicTdGiaic8GaL9ibUAPEHB1ib5kbhM1INYua7NSibBF4hFJpdE3fpdr8kgqnRxm1RTc8nWRYe4CFoia/132",
                "is_attention": 0,
                "circle_master": 1
            }
        ]
    }
}

错误时返回:

{
    "result": 0,
    "msg": "error",
    "data": []
}

返回参数说明:

参数名 类型 说明
member_id number 会员id
name string 会员名称
bg_img string 背景图片
header_img string 会员头像
is_attention number 是否关注
circle_master number 是否圈主
is_member number 是否当前用户

备注:

  • 更多返回错误代码请看首页的错误代码描述