Skip to main content
POST
/
users
/
create
/
basic-auth
Create account with email and password
curl --request POST \
  --url https://auth.platform.arb.inc/users/create/basic-auth \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "password": "SecurePass123!",
  "firstName": "John",
  "termsOfService": "2025-08-15T10:30:00.000Z",
  "lastName": "Doe"
}
'

Body

application/json
email
string<email>
required

User's email address (1-320 characters)

Example:

"user@example.com"

password
string
required

User's password (8-20 characters, must meet strength requirements)

Example:

"SecurePass123!"

firstName
string
required

User's first name (1-100 characters)

Example:

"John"

termsOfService
string<date-time>
required

ISO 8601 timestamp when user accepted terms of service

Example:

"2025-08-15T10:30:00.000Z"

lastName
string | null

User's last name (1-100 characters, optional)

Example:

"Doe"

Response

Account successfully created