githubEdit

userCreate

Graphql fields and variables for the userCreate mutation

Create a user

Scope required: security:write

For a complete list of input attributes see the UserAttributes type

mutation userCreate ($attributes: UserAttributes!) {
  userCreate (attributes: $attributes) {
      errors
      user {
        allowLoginViaEmailLink
        createdAt
        email
        enabled
        entityId
        firstName
        fullName
        groupId
        id
        imageUrl
        lastLogin
        lastName
        managerUserId
        name
        roleId
        title
        updatedAt
        uuid
      }
  }
}

Arguments

Name
Type
Description

attributes

Response

Name
Type
Description

errors

List (String)

user

Last updated

Was this helpful?