Function patch_user

Source
pub async fn patch_user(
    configuration: &Configuration,
    user_id: &str,
    patch_user_request: PatchUserRequest,
) -> Result<User, Error<PatchUserError>>
Expand description

Partially update a user by providing only the fields you want to update. Omitted fields will not be updated. The fields that can be updated are defined in the request body, all other provided fields will be ignored. ##### Permissions Must be logged in as the user being updated or have the edit_other_users permission.