Hybrid/Authorized Access - User List
Request method | Request address |
GET | https://api.helplook.net/api/auth-access/get-user-list |
parameter
Parameter name | type | Required | illustrate |
---|---|---|---|
token | string | yes |
Get it in HelpLook backend settings->AI configuration |
auth_type | int | yes | Fixed value: 4 for authorized access and 6 for mixed access |
size | int | yes | Paging length, maximum value is 200. |
cursor | string | yes | The cursor of the paging query is 0 at the beginning, and the cursor value in the return parameter is passed subsequently. |
auth_group_id | int | no | Group ID, return all groups without passing |
response:
{
"data": {
"list": [
{
"user_id": "75", #User ID
"name": "chj", #Name
"phone": "13825988983", #Phone
"email": "225226@qq.com", #email
"auth_group_id": "47", #auth_group_id
"group_name": "默认分组" #group_name
}
],
"cursor": "75", #cursor
"has_more": true #has_more true false
},
"msg": "Success",
"code": 200
}