INPUT_OBJECT

CreatePersonUserInput

Arguments for creating a person user

link GraphQL Schema definition








input CreatePersonUserInput {
The email of the PersonUser.
email: String!
The first name of the PersonUser.
firstName: String!
The last name of the PersonUser.
lastName: String!
The ID of the Organization the PersonUser will belong to. A RoleAssignment will
be created with this Organization.
organizationId: ID!
The preferred name of the PersonUser. Will be used as the display name if
present.
preferredName: String
The ID of the Role the PersonUser will have. A RoleAssignment will be created
with this Role.
roleId: ID!
A boolean flag indicating whether the welcome email will be sent to the new
user.
sendWelcomeEmail: Boolean
}

link Required by