Zitadel · Schema

CreateHumanUserRequest

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
userName string
profile object
email object
phone object
password string
passwordChangeRequired boolean
View JSON Schema on GitHub

JSON Schema

zitadel-createhumanuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateHumanUserRequest",
  "title": "CreateHumanUserRequest",
  "type": "object",
  "required": [
    "userName"
  ],
  "properties": {
    "userName": {
      "type": "string"
    },
    "profile": {
      "$ref": "#/components/schemas/HumanProfile"
    },
    "email": {
      "$ref": "#/components/schemas/HumanEmail"
    },
    "phone": {
      "$ref": "#/components/schemas/HumanPhone"
    },
    "password": {
      "type": "string"
    },
    "passwordChangeRequired": {
      "type": "boolean"
    }
  }
}