Creates a new platform user with the specified email, name, password, and profile information for authentication and platform access.
model (UserCreateCommandRequest, required) — User creation details including:
email (string, required) — Unique email address (login identifier).firstName (string, required) — User’s first name.lastName (string, required) — User’s last name.password (string, required) — User’s password (must meet complexity requirements).phoneNumber (string, optional) — Contact phone number.isActive (bool, optional) — Active status (default: true).UserCreateCommandResponse containing the ID of the newly created user.
The access token received from the authorization server in the OAuth 2.0 flow.
The user creation request containing email, name, password, and optional profile information.
Base structure for command requests that modify data. Represents the payload required to create a new user.
The email address for the new user.
250First Name
150Last Name
150The phone number recorded for the user.
25The application roles assigned to the user.
None, Admin, User Always returned. Check the success property in the response body to determine if the operation succeeded.
Standard response structure containing operation status and error information. Standard command response indicating the result of a data modification. Create response containing the identifier of the newly created entity. Represents the response returned after a user creation command executes.
True if the operation completed successfully; false if an error occurred.
true
Result code indicating the outcome of the operation.
Unknown, Success, BadRequest, Unauthorized, NotFound, Error 200
Human-readable error message when an error occurs.
null
Unique identifier of the newly created entity.
"3fa85f64-5717-4562-b3fc-2c963f66afa6"