Authentication

Register a new user

Allows a new user to register with the system by providing necessary details. The user will receive an access token upon successful registration.

post/auth/register

Request body

usernamestring required

The username of the user to register.

passwordstring password required

The password for the user.

emailstring email required

The email address of the user.

Response

User registered successfully.

statusstring
codeinteger
messagestring

Example response

{
  "status": "OK",
  "code": 200,
  "message": "Operation completed successfully."
}

Changes