StaffCreateInput
No description
input StaffCreateInput {
firstName: String
lastName: String
email: String
isActive: Boolean
note: String
companyName: String
personalPhone: String
passwordUrl: String
taxExemptCode: String
customFields: [AttributeValueInput!]
addGroups: [ID!]
sellerId: ID
redirectUrl: String
isStaff: Boolean @deprecated
}
Fields
StaffCreateInput.firstName ● String scalar
Given name.
StaffCreateInput.lastName ● String scalar
Family name.
StaffCreateInput.email ● String scalar
The unique email address of the user.
StaffCreateInput.isActive ● Boolean scalar
User account is active.
StaffCreateInput.note ● String scalar
A note about the user.
StaffCreateInput.companyName ● String scalar
Only filled out if the account is a business account.
StaffCreateInput.personalPhone ● String scalar
Personal phone number.
StaffCreateInput.passwordUrl ● String scalar
Password url
StaffCreateInput.taxExemptCode ● String scalar
Tax exempt code
StaffCreateInput.customFields ● [AttributeValueInput!] list input
List of custom fields.
StaffCreateInput.addGroups ● [ID!] list scalar
List of permission group IDs to which user should be assigned.
StaffCreateInput.sellerId ● ID scalar
ID of the seller to which the staff member belongs.
StaffCreateInput.redirectUrl ● String scalar
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
StaffCreateInput.isStaff ● Boolean deprecated scalar
DEPRECATED
Staff creation always produces a staff user, will be removed on January 15, 2026
User is staff member.
Member Of
staffCreate mutation