OBJECT
Bot
Some bot that interacts with visitors.
link GraphQL Schema definition
- type Bot implements User {
- # Language used by the bot
- : String
- # User id
- : LegacyId!
- # User email
- : String
- # User last name
- : String!
- # User first name
- : String
- # 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 @deprecated( reason: "Use 'userName' field instead" )
- # The user-name 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
- # User avatar url
- : URL @deprecated( reason: "Use 'avatar' field instead" )
- # User avatar url
- : URL
- # User creation datetime
- : DateTime
- # Indicates if User has been deleted
- : Boolean
- # User deletion datetime
- : DateTime
- # Language in which to display the platform interface
- : Locale @deprecated( reason: "Use 'countryPreferences' field instead" )
- # Languages in which the user is able to accept a chat
- : [Language!]! @deprecated( reason: "Use 'countryPreferences' field instead" )
- # Skills of the user.
- # The user's skills can be used to determine which routing group the user will be
- # a member of.
- # For more information regarding how to create and use skills, please see the
- # following documentation:
- # https://help.iadvize.com/hc/en-gb/articles/203444283-Use-the-skills.
- : [Skill!]
- # Presence of the user
- : UserPresence
- # Channels availabilities of the user
- : UserAvailability
- # Projects assigned to the user, determining which projects the user can handle
- # conversations for
- #
- # Arguments
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # first: Returns the first n elements from the list.
- # last: Returns the last n elements from the list.
- (: String, : String, : Int, : Int): UserProjectConnection
- # User's preferences concerning locale, time/date format, etc
- : CountryPreferences
- }