- 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
Batch Create
Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/user-account/batch-create
Request
Body Params application/json
query
array [object {5}]
required
country
string
required
clientType
string
required
email
string
required
companyFullName
string
required
username
string
required
Example
{
"query": [
{
"country": "SGP",
"clientType": "2",
"email": "*****+1@gmail.com",
"companyFullName": "ea4a7ad3",
"username": "2c5ded0c"
},
{
"country": "SGP",
"clientType": "2",
"email": "*****+2@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/batch-create' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": [
{
"country": "SGP",
"clientType": "2",
"email": "*****+1@gmail.com",
"companyFullName": "ea4a7ad3",
"username": "2c5ded0c"
},
{
"country": "SGP",
"clientType": "2",
"email": "*****+2@gmail.com",
"companyFullName": "ea4a7ad3",
"username": "2c5ded0c"
}
]
}'
Responses
🟢200batch-create
application/json
Body
header
object
required
success
boolean
required
Example
{
"header": {
"success": true
}
}
Modified at 2025-06-27 06:32:06