# 修改用户详细信息

# 调用方式: PUT

# 接口地址:

https://api.freelog.com/v2/users/current/detailInfo
1

# body传入参数说明:

参数 必选 类型及范围 说明
areaCode 可选 string 区域码,2位或4位
occupation 可选 string 职业
birthday 可选 string 生日,YYYY-MM-DD
sex 可选 int 性别 0:未知 1:男 2:女
intro 可选 string 简介,不超过200个字符.

# body示例

{
   "areaCode": "4403",
   "occupation": "软件工程师",
   "birthday":"2000-09-12"
}
1
2
3
4
5

# 返回说明:

返回值字段 字段类型 字段说明
[data] bool 操作结果

# 返回示例

{
    "ret": 0,
    "errcode": 0,
    "msg": "success",
    "data": true
}
1
2
3
4
5
6