---
title: "UserUpdateRequestModel"
url: "https://developer.tesma.com/apis/idp-public-api-2/versions/3a3d30d9-10e8-4c7b-9457-d1f146a3a3fe/schemas/UserUpdateRequestModel"
---

> Full API specification: https://developer.tesma.com/apis/idp-public-api-2/versions/3a3d30d9-10e8-4c7b-9457-d1f146a3a3fe.md

# UserUpdateRequestModel

Model to update a new user

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: CHG IdentityProvider API v1
  version: 2.3.44.0
components:
  schemas:
    UserUpdateRequestModel:
      additionalProperties: false
      description: Model to update a new user
      properties:
        email:
          description: Email of the new user
          format: email
          minLength: 1
          type: string
        firstName:
          type:
            - "null"
            - string
        lastName:
          type:
            - "null"
            - string
        userName:
          type:
            - "null"
            - string
      required:
        - email
      type: object
```
