NotificationType

(ENUM)

link GraphQL Schema definition

  • enum NotificationType {
  • # sends e-mail notification to assigned sales person (if there is some)
  • EMAIL_SALESPERSON
  • # sends e-mail notification to website administrator
  • EMAIL_ADMIN
  • # sends e-mail notification to customer's e-mail
  • EMAIL_CUSTOMER
  • # sends e-mail notification to other e-mail. This must be provided with the
  • # 'extra' field of NotificationRequest
  • EMAIL_OTHER
  • # calls given URL
  • WEB_HOOK
  • # specific system event observed by custom handlers will be fired. @requires
  • # Partner-Token
  • SYSTEM_EVENT
  • # renders notification to system's notification centre - section of system
  • # messages - this is visible to all administrators
  • APPTRAY_SYSTEM
  • # renders notification to system's notification centre - section of web-shop
  • # messages - this is visible just to specific user (if indicated with the 'extra'
  • # field of NotificationRequest)
  • APPTRAY_SHOP
  • }