Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

查询指定用户

基于 user_id 查询指定用户

请求说明

请求地址https://openapi.wps.cn/v7/users/{user_id}
请求方法GET
签名方式KSO-1
权限要求查询和管理通讯录信息(应用授权) kso.contact.readwrite
查询通讯录信息(应用授权) kso.contact.read

请求头(Header)

Header 名称参数类型是否必填说明
Content-Typestring使用:application/json
X-Kso-DatestringRFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT
X-Kso-AuthorizationstringKSO-1 签名值,详见《签名方法》
Authorizationstring授权凭证,格式为:Bearer {access_token}

路径参数(Path)

名称参数类型说明
user_idstring用户 id

查询参数(Query)

名称参数类型是否必填说明
with_deptboolean是否返回部门信息

请求地址示例

[GET] https://openapi.wps.cn/v7/users/{user_id}?with_dept={boolean}

响应体

名称参数类型说明
codeinteger响应代码。非 0 表示失败,参照《状态码说明》
msgstring响应信息
dataobject响应数据
∟ citystring城市
∟ countrystring国家
∟ ctimeinteger创建时间
∟ deptsarray[object]部门信息
∟ ∟ abs_pathstring绝对路径
∟ ∟ idstring部门 id
∟ ∟ namestring部门名称
∟ emailstring邮箱
需额外获取字段权限:查询用户的邮箱(应用授权)kso.user_email.read
∟ employee_idstring工号
∟ employerstring就职单位
∟ employment_statusstring员工状态
∟ employment_typestring员工类型
∟ ex_user_idstring用户外部 id,可以是用户 id、用户名、邮箱、手机号、外部 id、在外部身份源的 id,为空则默认为用户 id
∟ genderstring[enum]性别
undefined:未设置;male:男性;female:女性;secrecy:保密
需额外获取字段权限:查询用户的性别(应用授权)kso.user_gender.read
∟ idstring用户 id,自动生成
∟ leader_idstring直属主管的 user_id
∟ phonestring手机号码
需额外获取字段权限:查询用户的手机号(应用授权)kso.user_phone.read
∟ rolestring[enum]用户角色
super-admin:超级管理员;admin:普通管理员;normal:普通用户
∟ statusstring[enum]用户状态
active:正常;notactive:未激活;disabled:禁用;dimission:离职
∟ telephonestring座机
∟ titlestring职务信息
∟ user_namestring用户名称
∟ work_placestring办公地点
∟ def_dept_idstring主部门id

响应体示例

json
{
  "data": {
    "city": "string",
    "country": "string",
    "ctime": 0,
    "depts": [
      {
        "abs_path": "string",
        "id": "string",
        "name": "string"
      }
    ],
    "email": "string",
    "employee_id": "string",
    "employer": "string",
    "employment_status": "string",
    "employment_type": "string",
    "ex_user_id": "string",
    "gender": "string[enum]",
    "id": "string",
    "leader_id": "string",
    "phone": "string",
    "role": "string[enum]",
    "status": "string[enum]",
    "telephone": "string",
    "title": "string",
    "user_name": "string",
    "work_place": "string",
    "def_dept_id": "string"
  },
  "msg": "string",
  "code": 0
}
回到旧版