企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 获取用户信息 >[danger]接口认证:**需要认证** ##### 响应说明 | 字段名 | 字段类型 | 字段说明 | | --- | --- | --- | | id | int | 用户id | | avatar| string| 头像 | | id_format| string| 格式化后的id| | nickname| string| 昵称| | phone| string| 手机号| | withdraw| string| 挂售待提现,结算货款| | wholesale_score| string| 批发(配额)积分| | consume_subsidy| string| 消费补贴| | lucky_score| string| 幸运积分| | universal_score| string| 万能碎片| | special_score| string| 特别积分(养老积分)| | withdrawal_quota| string| 提现配额| | is_gold_vip| int| 是不是黄金会员,1是0否| | is_verified| int| 是否通过实名认证,1是0否| ## 示例 ~~~[api] get:/user/info <<< success { "code": 200, "msg": "成功", "data": { "id": 20, "avatar": "http://noobcoder.oss-cn-hangzhou.aliyuncs.com/letao/app/user/updateAvatar/61e8f5f431338.png", "id_format": "MF1220020", "nickname": "123123", "phone": "13832320462", "withdraw": "0.00", "wholesale_score": "9999.00", "consume_subsidy": "9999.00", "lucky_score": "9999.00", "universal_score": "0.00", "special_score": "9999.00", "withdrawal_quota": "0.00", "is_gold_vip": 0, "is_verified": 0 } } ~~~