Developers create customer accounts
Request
Body Params application/json
{
"email": "sub119@business.io",
"mobileNumber": "+65 11918612760",
"country": "VGB",
"fullName": "Holding Limited TD2",
"clientType": 4,
"username": "Leo",
"city": "Tortola",
"postalCode": "VG1110",
"address": "CC, Road Town, VG 1110",
"dateOfBirth": "1988-08-05"
}
Request Code Samples
curl --location --request POST 'https://openapi.dev.stablelink.app/user/create-user' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "sub119@business.io",
"mobileNumber": "+65 11918612760",
"country": "VGB",
"fullName": "Holding Limited TD2",
"clientType": 4,
"username": "Leo",
"city": "Tortola",
"postalCode": "VG1110",
"address": "CC, Road Town, VG 1110",
"dateOfBirth": "1988-08-05"
}'
Responses
application/json {
"retcode": 200,
"retdata": {
"clientId": 80000001,
"companyFullName": "abc"
},
"success": true
}
Modified at 2026-02-26 07:30:41