Webportal v1

embedded apps

API Reference - WebPortal.notification.evt.error

WebPortal.notification.evt.error

Type Event

WebPortal.notification.evt.error

Description This event is triggered when a notification fails to be created using WebPortal.notification.new. Check out the dedicated tutorial.
Type event message.
Output Data Type Description
type String WebPortal.notification.evt.error
notifId String Id of the notification

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
window.addEventListener("message", function(event){
  
  if (typeof event.data !== 'undefined' && typeof event.data.type !== 'undefined' ){

    var data = event.data;
    var type = event.data.type;

    switch(type){
      
      // When a WebPortal Notification fails to be created
      case "WebPortal.notification.evt.error":
        console.log("[WebPortal Notification] The WebPortal notification fails te be created.");
        console.log("[WebPortal Notification] ID:" + data.notifId +);
        break;

    }
  }
});

See Also