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
| Name | Type | Description |
|---|---|---|
| user_in | PrivateUserCreate | The user registration data including email, full name, and password. |
| session | SessionDep | The database session dependency used to persist the new user record. |
Request Body
| Field | Type | Description |
|---|---|---|
string | The email address for the new user account. | |
| full_name | string | The legal or display name of the user. |
| password | string | The plain-text password to be hashed and stored for authentication. |
Response
| Status | Description |
|---|---|
| 200 | The user was successfully created and stored in the database. Returns UserPublic. |