文档
测试

群列表接口

POST
http://localhost:6600/api/v1/list/getGroup

接口描述

获取群列表

请求参数

参数名
类型
描述
必填
user_id
int
用户id
必填

响应参数

参数名
类型
描述
必填
code
int
错误码
必填
data
object
内容
必填
data
array
内容
必填
user_id
int
用户id
必填
wx_group_name
String
微信群名
必填
wx_group_head_url
String
微信群头像
必填
is_share
int
是否分享
必填
total
int
总数
必填
total_page
int
总页数
必填
now_page
int
当前页数
必填
limit
int
每页数量
必填
msg
String
错误信息
必填

说明 / 示例

入参: ``` { "user_id" : 1 } ``` 出参: ``` { "code": 0, "data": { "data": [ { "user_id": 1017, "wx_group_name": "vaywfkywmo", "wx_group_head_url": "ldyfcizpfo", "is_share": 3286 }, { "user_id": 2291, "wx_group_name": "lgglwfjhst", "wx_group_head_url": "acogkzwsir", "is_share": 3934 }, { "user_id": 3635, "wx_group_name": "iamnzybiwn", "wx_group_head_url": "drlsjlzhvv", "is_share": 8341 } ], "total": 123, "total_page": 5, "now_page": 1, "limit": 20 }, "msg": "成功" } ```