- 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
Create
Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/user-account/create
Request
Body Params application/json
query
object
required
country
string
required
clientType
integer
required
3: "Partnership"
4: "Corporate"
5: "Financial Institution"
6: "Exempt Financial Institution"
email
string
required
companyFullName
string
required
username
string
required
Example
{
"query": {
"country": "SGP",
"clientType": 2,
"email": "****@gmail.com",
"companyFullName": "ea4a7ad3",
"username": "2c5ded0c"
}
}
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/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": {
"country": "SGP",
"clientType": 2,
"email": "****@gmail.com",
"companyFullName": "ea4a7ad3",
"username": "2c5ded0c"
}
}'
Responses
🟢200create-user
application/json
Body
header
object
required
success
boolean
required
Example
{
"header": {
"success": true
}
}
Modified at 2025-06-27 06:33:13