用户

列出用户信息

请求

  1. GET /openapi/users?pageSize=<pageSize>&pageNum=<pageNum>&account=<account>

Query 参数说明

参数名说明类型必填
pageNum指定页数int
pageSize每页数量int
account账户名关键字string

成功返回说明

参数名类型描述
users[]User用户列表
totalint用户总数

User 参数说明

参数名说明类型
uiduidstring
name用户名string
accout账户名string

成功返回示例

  1. {
  2. "users": [
  3. {
  4. "uid": "ddd405d5-5131-11ee-b458-4a4088364d94",
  5. "account": "admin",
  6. "name": "admin"
  7. },
  8. {
  9. "uid": "d456d705-73a9-11ee-98cf-56ef622fc735",
  10. "account": "demo",
  11. "name": "demo"
  12. }
  13. ],
  14. "total_count": 2
  15. }

列出用户组信息

请求

  1. GET /openapi/user-groups?pageNum=<PageNum>&pageSize=<PageSize>

Query 参数说明

参数名类型描述必填
pageNumint指定页数
pageSizeint每页数量

成功返回说明

参数名说明类型
uiduidstring
name用户名string
accout账户名string

成功返回示例

  1. {
  2. "group_list": [
  3. {
  4. "id": "98256be6-6e53-11ee-a205-9653dd3e9c32",
  5. "name": "user-group1",
  6. "description": "user-group description",
  7. "type": "custom",
  8. "user_total": 1
  9. },
  10. {
  11. "id": "cce58580-5131-11ee-b458-4a4088364d94",
  12. "name": "所有用户",
  13. "description": "系统中的所有用户",
  14. "type": "system",
  15. "user_total": 11
  16. }
  17. ],
  18. "total": 2
  19. }