Skip to main content

Start Registration Flow

POST /v1/auth/register

Initiates a new user registration flow by collecting basic account information. The endpoint validates the provided details and sends a verification code to the user's email address. This prepares the account for the next step where the user confirms their identity with the verification code.

Request Body

{
"username": "user@example.com",
"firstname": "John",
"lastname": "Smith",
"phone": "+4700000000"
}

Response Example

{
"message": "Verify your factors",
"data": {}
}