Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
    • Mirror Endpoints
    • Get Transfer Detail with ExchangeGET
    • Get Transfer History with ExchangeGET
    • Transfer with ExchangePOST
    • Get Withdrawal HistoryGET
    • WithdrawalPOST
    • Get Withdrawal DetailsGET
    • Get Sub-Wallet List (V1)GET
logoPowered by Apifox
  1. Archive

Get Sub-Wallet List (V1)

GET/open-api/v1/subwallet/list

This method allows to get sub wallet ID list of the requested prime wallet ID (only applicable to prime Wallet)

API Key permission group : Enable Enquiry

Request

Query Params
pageLimit
integer 
required

page limit

Example:
25
pageNo
integer 
required

page no

Example:
1
parentWalletId
integer 
required

Parent wallet id (Prime)

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

Request samples

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 Code: 200
Content Type : JSONapplication/json
Data Schema
unified pageable result
data
array[integer <int64>]
optional
pageLimit
integer <int32>
Page limit
optional
pageNo
integer <int32>
Page no
optional
totalPage
integer <int32>
Total page number
optional
Example成功示例
{
  "data": {
    "data": [
      1551518146968961000,
      1551518609399365600,
      1551519098863104000
    ],
    "totalPage": 0,
    "pageNo": 1,
    "pageLimit": 5
  },
  "code": "000000",
  "message": "global.success"
}
Last modified: a year ago