Skip to main content
POST
/
v1
/
ext
/
account
/
create-user
Create End User Account
curl --request POST \
  --url https://staging-api.liquidity.walletos.xyz/v1/ext/account/create-user \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "{{$randomFirstName}}",
  "lastName": "{{$randomLastName}}",
  "email": "{{$randomExampleEmail}}",
  "identifier": "{{$randomUUID}}",
  "type": "USER"
}
'
{
  "message": "User account created",
  "account": {
    "id": "NmFkZWQyYTYtMGY5Yy00YTVkLWJhYWYtNTZiMTVkMzg0ZTQ1"
  }
}

Body

application/json
firstName
string
lastName
string
email
string
identifier
string
type
string

Response

200 - OK

message
string
account
object