WSPN
Language
  • English
Version
  • V1.0
Wallet
Language
  • English
Version
  • V1.0
Wallet
Twitter
Telegram
Linkedin
  1. User Account
  • Introduction
  • Get Started
  • Signature
  • About WUSD
  • Webhook Service
  • Sandbox Environment
  • Blockchain Confirmations
  • Appendix
  • API Keys
  • Core Functionality
    • Quickstart: Deposit via Blockchain Wallet
    • Quickstart: Withdraw via Blockchain Wallet
    • Quickstart: Deposit via Funds Transfer
    • Quickstart: Withdraw to Bank
  • Api Reference
    • Authentication
      • Get Access Token
      • Refresh Access Token
    • Wallet
      • Address
        • Get Deposit Address
        • Add Whitelist Address
        • Get Whitelist Address
        • Delete Whitelist Address
      • Remit Info
        • Get Deposit Remit Info
        • Add Remit Info
        • Edit Remit Info
        • Get Remit Info
        • Delete Remit Info
      • Transaction
        • Get Balance
        • Create Fiat Deposit
        • Create Fiat Withdraw
        • Create Crypto Withdraw
        • Get Fiat Transaction
        • Get Exchange Rate
        • Create Mint/Redeem
        • Mint/Redeem History
        • Get Mint Redeem Receipt
        • Get Mint Redeem Order
        • Get Fiat Transaction Receipt
        • Get Fiat Transaction Order
        • Get Crypto Transaction Receipt
        • Get Crypto Transaction Order
      • User Account
        • Country List
          GET
        • Create
          POST
        • Batch Create
          POST
        • Sub Account
          POST
        • Sub Account/Api Key
          POST
        • Kyb Submit File
          POST
        • Kyb Batch Submit File
          POST
        • Kyb Submit Text
          POST
      • File Upload
        • File Upload
  1. User Account

Sub Account

Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/user-account/sub-account
Get all sub-account information, support paging, and support specified parameter matching query

Request

Body Params application/json

Example
{
    "query": {
        "clientId": 6824000000,
        "companyFullName": "abc***"
    },
    "pagination": {
        "current": 1,
        "size": 10
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wallet.test.wspn.io/openapi/v1/user-account/sub-account' \
--header 'Content-Type: application/json' \
--data-raw '{
    "query": {
        "clientId": 6824000000,
        "companyFullName": "abc***"
    },
    "pagination": {
        "current": 1,
        "size": 10
    }
}'

Responses

🟢200sub-account
application/json
Body

Example
{
    "header": {
        "success": true
    },
    "resultList": [
        {
            "clientId": 6825060174,
            "companyFullName": "ea4a7ad3",
            "countryOfRegistration": "SGP",
            "companyType": "Master Merchant",
            "clientStatus": "Pending KYC",
            "username": "2c5ded0c",
            "userId": 200000508
        },
        {
            "clientId": 6825060191,
            "companyFullName": "ea4a7ad3",
            "countryOfRegistration": "SGP",
            "companyType": "Master Merchant",
            "clientStatus": "Pending KYC",
            "username": "2c5ded0c",
            "userId": 200000509
        },
        {
            "clientId": 6825060192,
            "companyFullName": "ea4a7ad3",
            "countryOfRegistration": "SGP",
            "companyType": "Master Merchant",
            "clientStatus": "Pending KYC",
            "username": "2c5ded0c",
            "userId": 200000510
        }
    ],
    "pagination": {
        "current": 1,
        "size": 10,
        "pages": 1,
        "total": 3
    }
}
Modified at 2025-07-01 08:57:40
Previous
Batch Create
Next
Sub Account/Api Key
Built with