Skip to main content

POST /utils/users/

Create a new user.

Registers a new user in the system by providing an email, full name, and password.

Endpoint

POST /utils/users/

Parameters

NameTypeDescription
user_inPrivateUserCreateThe user registration data including email, full name, and password.
sessionSessionDepThe database session dependency used to persist the new user record.

Request Body

FieldTypeDescription
emailstringThe email address for the new user account.
full_namestringThe legal or display name of the user.
passwordstringThe plain-text password to be hashed and stored for authentication.

Response

StatusDescription
200The user was successfully created and stored in the database. Returns UserPublic.