v70

latestOpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-031426201.0 MB
Users

Update user

Updates an existing user account with new details

put/api/users/{userId}

Path parameters

userIdstring required

Request body

loginstring required

The login username of the user.

firstNamestring nullable required

The first name of the user. Can be null if not provided.

lastNamestring nullable required

The last name of the user. Can be null if not provided.

emailstring nullable required

The email address of the user. Can be null if not provided.

language'fr' | 'en' required

Type representing a supported language.

timezonestring required

Represents a timezone as an IANA timezone string.

Example request

{
  "login": "john.doe",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john.doe@example.com",
  "language": "en",
  "timezone": "Europe/Paris"
}

Response

User updated successfully