v6

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-0161113158.0 KB
Auth

Register a new user

Creates a new user account in the Endatix application using the provided email and password.

post/api/auth/register

Request body

emailstring email required

The email address of the user.

passwordstring

The password chosen by the user.

confirmPasswordstring required

The confirmation of the password chosen by the user.

Example request

{
  "email": "user@example.com",
  "password": "Password123!",
  "confirmPassword": "Password123!"
}

Response

User has been successfully registered.

successboolean

Indicates whether the registration was successful.

messagestring

A message describing the outcome of the registration attempt.