Mixed/Authorized Access - Group List
Request method | Request address |
GET | https://api.helplook.net/api/auth-access/get-group-list |
Body Type: multipart/form-data
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 50. |
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. |
response:
{
"data": {
"list": [
{
"name": "test", #group name
"is_default": 1, #is_default 1true 0false
"user_count": 1, #user_count
"auth_group_id": "50" #auth_group_id
}
],
"cursor": "49", #cursor
"has_more": true #has_more. true false
},
"msg": "Success",
"code": 200
}