Skip to main content
POST
/
cabinet
/
auth
/
email
/
register
/
standalone
Register Email Standalone
curl --request POST \
  --url http://localhost:8080/cabinet/auth/email/register/standalone \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "first_name": "<string>",
  "language": "ru",
  "referral_code": "<string>"
}
'
{
  "message": "<string>",
  "email": "<string>",
  "requires_verification": true
}

Body

application/json

Request to register new account with email (no Telegram required).

email
string<email>
required

Email address

password
string
required

Password (min 8 chars)

Required string length: 8 - 128
first_name
string | null

First name

Maximum string length: 64
language
string
default:ru

Preferred language

referral_code
string | null

Referral code of inviter

Maximum string length: 32

Response

Successful Response

Response for email registration (before verification).

message
string
required

Success message

email
string
required

Email address to verify

requires_verification
boolean
default:true

Whether email verification is required