- Introduction
- Get Started
- Signature
- About WUSD
- Webhook Service
- Sandbox Environment
- Blockchain Confirmations
- Appendix
- API Keys
- Core Functionality
- Api Reference
- Authentication
- Wallet
- Address
- Remit Info
- Transaction
- User Account
- File Upload
Sub Account
Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/user-account/sub-account
Request
Body Params application/json
query
object
required
pagination
object
required
current
integer
required
size
integer
required
Example
{
"query": {},
"pagination": {
"current": 1,
"size": 10
}
}
Request 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": {},
"pagination": {
"current": 1,
"size": 10
}
}'
Responses
🟢200sub-account
application/json
Body
header
object
required
success
boolean
required
resultList
array [object {7}]
required
clientId
integer
required
companyFullName
string
required
countryOfRegistration
string
required
companyType
string
required
clientStatus
string
required
username
string
required
userId
integer
required
pagination
object
required
current
integer
required
size
integer
required
pages
integer
required
total
integer
required
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-06-27 06:32:46