Get Sub-Wallet List (V2)
GET
/open-api/v2/subwallet/listThis method allows you to get sub wallet details list of the requested prime wallet ID (only applicable to prime Wallet) [This endpoint will return detail info of each sub wallet]
API Key permission group : Enable Enquiry
请求参数
Query Params
pageLimit
integer
optional
Page limit, min: 1, max: 500
Example:
25
pageNo
integer
optional
Page number, min: 1
Example:
1
parentWalletId
string
required
Parent wallet id
Example:
1325589336357780500
timestamp
integer
required
Current Timestamp in millisecond
Example:
1640995200000
Header Params
open-apikey
string
required
OpenAPI key string
signature
string
required
Signature of the request
示例代码
Responses
The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
data
object | null
optional
response data, maybe null
data
$ref(#/definitions/351863)[]
required
totalPage
integer
required
pageNo
integer
required
pageLimit
integer
required
code
string
required
'000000' indicates success, while any others indicate failure.
message
string
required
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
Example
{
"data": {
"data": [
{
"walletIdStr": "370388040948248576",
"walletId": 370388040948248600,
"walletName": "wallet_1714129032977",
"walletType": 21,
"autoCollection": 0,
"requestId": null
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
},
"code": "000000",
"message": "Success"
}
Last modified: 3 个月前