查询用户钱包详情
GET/user/detail
通过用户 ID 或者 UUID 查询子合约钱包详情。
Request
Query Parameters
userId int32
用户 ID
userId
和 UUID
至少传一个
UUID string
用户 UUID
userId
和 UUID
至少传一个
chainId int32
链 ID
此为平台内部 ID,不是链上或者钱包里的链 ID,可以从查询链列表接口获取
Responses
- 200
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
0
- 充值类用户,钱包地址是通过 API 接口(创建用户子合约钱包)生成1
- 收单类用户,钱包地址是由系统在收单期间自动生成
code int32required
状态码
msg stringrequired
成功或错误提示
description string
错误提示详情
data
object
用户对象
userId int32required
用户 ID
uuid stringrequired
用户 UUID
createTime date-timerequired
用户创建时间
userWallet
object[]
required
用户子钱包列表
chainId int32required
链 ID
此为平台内部 ID,不是链上或者钱包里的链 ID,可以从查询链列表接口获取
walletId int32required
用户子钱包 ID
walletAddress stringrequired
用户子钱包地址
userType int32
Possible values: [0
, 1
]
用户类型:
{
"code": 0,
"msg": "string",
"description": "string",
"data": {
"userId": 0,
"uuid": "string",
"createTime": "2024-07-29T15:51:28.071Z",
"userWallet": [
{
"chainId": 0,
"walletId": 0,
"walletAddress": "string"
}
],
"userType": 0
}
}
{
"code": 200,
"msg": "success",
"data": {
"userId": 1054,
"createTime": "2024-03-28 11:43:05",
"userWallet": [
{
"walletId": 55875,
"chainId": 1,
"walletAddress": "TGJVB5aC6wvG7fgD7uyfYsPbEUKhV4vigC"
}
],
"userType": 1,
"uuid": "2313-5f08afe6ca854e4ebf79781f351d0cb7"
}
}
Unauthorized
Forbidden
Not Found
Loading...