混合/授权访问-分组列表
请求方式 | 请求地址 |
GET | https://api.helplook.net/api/auth-access/get-group-list |
参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
token | string | 是 | |
size | int | 是 | 分页长度,最大值50。 |
cursor | string | 是 | 分页查询的游标,最开始传0,后续传返回参数中的cursor值。 |
响应:
{
"data": {
"list": [
{
"name": "test", #分组名称
"user_count": 1, #该分组用户数量
"auth_group_id": "50" #分组ID
}
],
"cursor": "49", #分页游标
"has_more": true #是否还有更多的数据。true:是 false:否
},
"msg": "Success",
"code": 200
}