INPUT_OBJECT
CreatePersonUserInput
Arguments for creating a person user
link GraphQL Schema definition
input CreatePersonUserInput {
The email of the PersonUser.
: String!
The first name of the PersonUser.
: String!
The last name of the PersonUser.
: String!
The ID of the Organization the PersonUser will belong to. A RoleAssignment will
be created with this Organization.
: ID!
The preferred name of the PersonUser. Will be used as the display name if
present.
: String
The ID of the Role the PersonUser will have. A RoleAssignment will be created
with this Role.
: ID!
A boolean flag indicating whether the welcome email will be sent to the new
user.
: Boolean
}