Updates an existing user’s profile information including name, email, phone number, password, and active status.
id (guid, required) — Unique identifier of the user to update (must match ID in request body).model (UserUpdateCommandRequest, required) — Updated user information including:
id (guid, required) — User identifier (must match path parameter).email (string, required) — Updated email address.firstName (string, required) — Updated first name.lastName (string, required) — Updated last name.phoneNumber (string, optional) — Updated phone number.password (string, optional) — New password (omit to keep existing).isActive (bool, optional) — Active status.UserUpdateCommandResponse indicating whether the update was successful.
The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier of the user to update (must match ID in request body).
The update request containing updated profile fields (email, name, phone, password, active status).
Represents the payload used to update basic user information.
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. Represents the response returned after updating user information.
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