INPUT_OBJECT

ProfessionalCreateInput

Contains input data for the professionalCreate mutation to create a professional user

link GraphQL Schema definition

  • input ProfessionalCreateInput {
  • # Email address of the new professional user
  • email: String!
  • # Password of the new professional user.
  • # The `password` and `samlUserId` fields are mutually exclusive: only of them can
  • # be set, because only one authentication method can be used.
  • password: String
  • # Last name of the new professional user
  • lastName: String!
  • # First name of the new professional user
  • firstName: String
  • # Pseudo of the new professional user.
  • # The user pseudo will be displayed under the avatar in the chatbox. It can be
  • # used to keep the real identity of agents secret and to attribute a nickname to
  • # the user profile.
  • pseudo: String!
  • # Role name of the new professional user, must be either "operator", "manager" or
  • # "admin"
  • roleName: String!
  • # External id of the new professional user. The external id is an identifier
  • # representing the user in another system.
  • externalId: String
  • # Language in which to display the platform interface
  • interfaceLanguage: Locale!
  • # Group the new professional user will be a member of
  • groupId: LegacyId
  • # Id used to bind a user from a SAML identity provider to an iAdvize user.
  • # The `password` and `samlUserId` fields are mutually exclusive: only of them can
  • # be set, because only one authentication method can be used.
  • samlUserId: String
  • # Languages spoken by the professional user.
  • # This field determines in which languages the user will be able to handle
  • # conversations.
  • spokenLanguages: [Language!]!
  • # Ids of the projects to assign to the user.
  • # The project ids determine which projects the professional user will be able to
  • # handle conversations for
  • projectIds: [LegacyId!]!
  • # Ids of the skills to assign to the user.
  • # Users can be organised by skill in order to automatically direct visitors
  • # towards the right agent.
  • # For in-depth documentation, please check the following page:
  • # https://help.iadvize.com/hc/en-gb/articles/203444283-Use-the-skills.
  • skillIds: [LegacyId!]!
  • }

link Require by