实名认证接口

  • 权限说明: 自己
  • 接口说明: 实名认证接口
  • 接口地址: /api/users/real
  • 请求方式: PATCH

请求参数

参数名称类型是否必须描述
identitystring身份证号
realnamestring姓名

请求示例:

  1. {
  2. "data": {
  3. "attributes": {
  4. "identity": "422828xxxxxxx1666",
  5. "realname": "张三"
  6. }
  7. }
  8. }

返回结果

参数名称类型出现要求描述

返回说明

  • 成功, 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-26T13:22:25+08:00"
  15. }
  16. }
  17. }

失败示例: