Create user

Create user

Creates a new user account.

Body
application/json
userName
string
required

The login of the user.

userInfo
object
required

An object containing basic profile information.

isPasswordChangeRequired
boolean

Whether to redirect the user to the password change page on their first login. Defaults to false.

userRole
string

If the userType is Contributor, the role of the user: Reviewer, Translator, Administrator, etc. If the user is a PowerReader or a Reviewer, a comma-separated list of Power Reader or Reviewer Access Groups to assign to this user.

userType
string

Type of the user – Contributor or PowerReader (default).

isDontSendEmail
boolean

Whether to send an email to the user about the account creation.

Responses
POST/users

{
  "userInfo": {
    "about": "…",
    "avatarImageUrl": "…",
    "cultureInfoId": "…",
    "email": "…",
    "firstName": "…",
    "isAutoDetectCultureInfo": true,
    "isAutoDetectTimeZone": true,
    "lastActivityDate": "2026-06-15T14:11:50.283Z",
    "lastName": "…",
    "middleName": "…",
    "timeZoneId": "…"
  },
  "userName": "…",
  "userType": "…",
  "userRole": "…",
  "isEnabled": true
}