简要描述:

  • 群主获取群详情

请求URL:

GET/plugin.group-develop-user.frontend.group-chat.get-detail-by-employee

参数:

参数名 是否必须 类型 说明
end_day string 结束日期YYYY-MM-dd
id int 群ID

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "成功",
    "data": {
        "id": 5,
        "uniacid": 2,
        "group_name": "测试群聊活码",
        "qrcode_url": "https://localhost:82/attachment/image/5f3d6b80fbf44ea3ae709805acc1fdaa.png",
        "group_created_time_str": "2021-05-02 14:07",
        "owner_member_uid": 2662,
        "owner_member_nickname": "15000245941",
        "owner_member_avatar": "",
        "today_join_count": 2,
        "today_withdraw_count": 0,
        "today_new_member_count": 0,
        "total_in_count": 0,
        "total_withdraw_count": 0,
        "total_in_employee_count": 0,
        "total_in_customer_count": 0,
        "total_join_scene_normal_count": 0,
        "total_join_scene_link_count": 0,
        "total_join_scene_qr_count": 0,
        "chats_line": {
            "x": [
                "2021-06-02",
                "2021-06-01",
                "2021-05-31",
                "2021-05-30"
            ],
            "y_in": [
                0,
                0,
                0,
                0
            ],
            "y_withdraw": [
                0,
                0,
                0,
                0
            ],
            "y_new_member": [
                0,
                0,
                0,
                0
            ]
        }
    }
}

错误时返回:


返回参数说明:

参数名 类型 说明
group_name string 群名称
qrcode_url string 群二维码地址
group_created_time_str string 群创建时间
owner_member_uid int 群主会员UID
owner_member_nickname string 群主会员昵称
owner_member_avatar string 群主会员头像
today_join_count int 今日数据入群
today_withdraw_count int 今日数据退群
today_new_member_count int 今日数据新会员
total_in_count int 在群人数
total_withdraw_count int 退群人数
total_in_employee_count int 在群员工人数
total_in_customer_count int 在群客户人数
total_join_scene_normal_count int 直接邀请入群人数
total_join_scene_link_count int 邀请链接入群人数
total_join_scene_qr_count int 二维码入群人数
chats_line obj 图表数据
chats_line->y_in obj 在群人数数据
chats_line->y_withdraw obj 退群人数数据
chats_line->y_new_member obj 新会员人数数据