文档
测试

用户列表查询

GET
/v1/frontend/users/query/by-external-system

接口描述

用户列表查询,参数为均为可选,参数为空则是全量查询

请求参数

参数名
类型
描述
必填
tenantCode
String
租户编码
必填
organizationCode
String
组织编码
必填

响应参数

参数名
类型
描述
必填
code
String
用户编码
必填
tenantCode
String
租户编码
必填
username
String
用户名
必填
name
String
名称
必填
description
String
描述
必填
organizationCode
String
组织编码
必填
status
枚举
ONLINE 表示可用,OFFLINE 表示不可用
必填
email
String
邮箱
必填
phone
String
电话
必填
password
String
密码(MD5加密后的)
必填
createdAt
Date
创建时间
必填
updatedAt
Date
更新时间
必填

响应参数示例

```language { "success": true, "message": null, "error": null, "entity": { "code": "USER-CMSS-GYBSY1019-002", "tenantCode": "TENANT-CMSS-0027", "username": "gyb-sy-1019", "name": "guyunbin", "description": "阿斯达克", "email": "sag@163.com", "phone": "18345437658", "password": "92d7ddd2a010c59511dc2905b7e14f64", "createdAt": "2020-10-19 18:38:35", "updatedAt": "2020-10-22 10:11:03", "status": "ONLINE", "organizationCode": "ORG-CMSS-0018" } } ```