删除用户微信信息

  • 权限: 仅自己
  • 接口说明: 删除用户微信信息
  • 接口地址: /api/users/{id}/wechat
  • 请求方式: DELETE

请求参数

参数名称类型描述

请求示例

返回结果

参数名称类型描述
idint用户 ID
usernamestring用户名
mobilestring手机号
avatarUrlstring头像
threadCountint帖子数
registerIpstring注册 IP
lastLoginIpstring最后登录 IP
createdAtdate注册时间

返回说明

  • 成功, http 状态码: 200
  • 失败, http 状态码: 非 200

返回示例

  1. {
  2. "data": {
  3. "type": "users",
  4. "id": "1",
  5. "attributes": {
  6. "id": 1,
  7. "username": "username",
  8. "mobile": "mobile",
  9. "avatarUrl": "",
  10. "threadCount": 0,
  11. "registerIp": "",
  12. "lastLoginIp": "",
  13. "createdAt": "2019-11-19T15:25:31+08:00",
  14. "updatedAt": "2019-11-26T10:09:40+08:00"
  15. }
  16. }
  17. }