# 修改用户 API

修改用户属性,使用PUT发起请求,请求地址为/api/v1/users/{id}

PUT /api/v1/users/{id} HTTP/1.1

# 请求 URI

参数名 位置 类型 必填 说明
id path 整数 用户 Id
apiKey query 字符串 API 密钥,请参考身份认证

# 请求 Body

参数名 类型 必填 说明
userName 字符串 用户账号
isChecked 字符串 是否已审核用户
isLockedOut 字符串 是否被锁定
displayName 字符串 用户姓名
email 字符串 邮箱
mobile 字符串 手机号
avatarUrl 字符串 头像图片路径
organization 字符串 组织
department 字符串 部门
position 字符串 职位
gender 字符串 性别
birthday 字符串 出生日期
education 字符串 毕业院校
graduation 字符串 学历
address 字符串 地址
weiXin 字符串 微信
qq 字符串 QQ
weiBo 字符串 微博
interests 字符串 兴趣
signature 字符串 签名

# 返回

名称 类型 说明
200 OK User 用户
401 Unauthorized Error 认证错误
404 NotFound Error 资源不存在错误
400 BadRequest Error 参数错误

# 示例

# 请求示例

PUT /api/v1/users/1 HTTP/1.1
Content-Type: application/json
X-SS-API-KEY: 7cd22002-27a7-4c5d-ba4d-a1c108a20eaf

{
  "userName": "demo2"
}

# 返回示例

{
  "value": {
    "id": 1,
    "userName": "demo2",
    "password": "3CPlhZ8UAus=",
    "passwordFormat": "Encrypted",
    "passwordSalt": "VohMFwNz4s006ZytezfUxg==",
    "createDate": "2018-06-17 14:18:45",
    "lastResetPasswordDate": "2018-06-17 14:18:45",
    "lastActivityDate": "2018-06-17 14:18:45",
    "countOfLogin": 0,
    "countOfFailedLogin": 0,
    "countOfWriting": 0,
    "isChecked": true,
    "isLockedOut": false,
    "displayName": "演示",
    "email": "demo@sample.com",
    "mobile": "13888888888",
    "avatarUrl": "",
    "organization": "",
    "department": "",
    "position": "",
    "gender": "",
    "birthday": "",
    "education": "",
    "graduation": "",
    "address": "",
    "weiXin": "",
    "qq": "",
    "weiBo": "",
    "interests": "",
    "signature": ""
  }
}
上次更新: 2020-5-29 5:12:29