文档
测试

- 获取用户信息

GET
/wallet/api/info/user

接口描述

获取用户信息(钱包属性)

请求头

参数名
类型
描述
必填
Authorization
string
Bearer xxx
必填

响应参数

参数名
类型
描述
必填
code
number
示例:0
必填
msg
string
示例:操作成功
必填
data
object
数据字典
必填
id
number
示例:8
必填
name
string
示例:陈健
必填
gender
number
示例:1
必填
phone
string
示例:136****7359
必填
idNo
string
示例:320922********5718
必填
idCardDuration
string
示例:20190706 - 20390706
必填
idCardExpire
string
示例:2039-07-06 00:00:00
必填
birth
string
示例:19900101
必填
realNameAuth
number
示例:3
必填
idCardFacade
string
示例:http://real-name-auth.oss-cn-beijing.aliyuncs.com/picsfzzm.jpg
必填
idCardReverse
string
示例:http://real-name-auth.oss-cn-beijing.aliyuncs.com/picsfzfm.jpg
必填
handIdCard
string
示例:http://real-name-auth.oss-cn-beijing.aliyuncs.com/picface.jpg
必填
parentId
object
示例:null
必填
region
number
示例:576
必填
type
number
示例:0
必填
level
number
示例:4
必填
hideLevel
number
示例:0
必填
avatar
object
示例:null
必填
createTime
string
示例:2020-03-03 17:43:15
必填
updateTime
string
示例:2020-03-03 17:43:15
必填
delFlag
number
示例:0
必填
aliPayAccount
string
支付宝账号
必填

说明 / 示例

```http GET /wallet/api/info HTTP/1.1 Host: 47.114.43.27:9999 Authorization: Bearer 119e810a-950a-42a2-b4ca-2d73e6c61c31 ``` ```json { "code": 0, "msg": "操作成功", "data": { "id": 8, "name": "陈健", "gender": 1, "phone": "136****7359", "idNo": "320922********5718", "idCardDuration": "20190706 - 20390706", "idCardExpire": "2039-07-06 00:00:00", "birth": "19900101", "realNameAuth": 3, "idCardFacade": "http://real-name-auth.oss-cn-beijing.aliyuncs.com/picsfzzm.jpg", "idCardReverse": "http://real-name-auth.oss-cn-beijing.aliyuncs.com/picsfzfm.jpg", "handIdCard": "http://real-name-auth.oss-cn-beijing.aliyuncs.com/picface.jpg", "parentId": null, "region": 576, "type": 0, "level": 4, "hideLevel": 0, "avatar": null, "createTime": "2020-03-03 17:43:15", "updateTime": "2020-03-03 17:43:15", "delFlag": 0, "aliPayAccount": "13951945866" } } ```