latestOpenAPI 3.0.32026-08-12367267.0 KB

cda4b2b11372

Create a user

Creates a new user for the Identomat platform (Manage).

Parameters:

  • companyKey (string, required) - The company's secret key.
  • email (string, required) - The email address of the new user.
  • emailVerified (boolean, optional) - Whether the email should be marked as verified. Defaults to false.
  • password (string, required) - The user’s password (minimum 8 characters).
  • firstName (string, optional) - First name of the user.
  • lastName (string, optional) - Last name of the user.
  • rights (array of strings, optional) - List of roles to assign to the user. If omitted, defaults to call_center_operator. Valid values are:
    • call_center_operator
    • operator
    • administrator
post/create-user

Request body

companyKeystring
emailstring
emailVerifiedboolean
passwordstring
firstNamestring
lastNamestring
rightsstring[]

Example request

{
  "companyKey": "your-company-secret-key",
  "email": "john.doe@example.com",
  "emailVerified": true,
  "password": "SecurePass123!",
  "firstName": "John",
  "lastName": "Doe",
  "rights": [
    "call_center_operator",
    "administrator",
    "operator"
  ]
}

Response

Success

resultstring

Example response

{
  "result": "userId"
}