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
- 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.
- String :
- # Last name of the new professional user
- String! :
- # First name of the new professional user
- 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.
- String! :
- # Role name of the new professional user, must be either "operator", "manager" or
- # "admin"
- String! :
- # External id of the new professional user. The external id is an identifier
- # representing the user in another system.
- String :
- # Language in which to display the platform interface
- Locale! :
- # Group the new professional user will be a member of
- 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.
- String :
- # Languages spoken by the professional user.
- # This field determines in which languages the user will be able to handle
- # conversations.
- 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
- 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.
- LegacyId!]! : [
- }