Webportal v1

embedded apps

API Reference - WebPortal.notification.evt.created

WebPortal.notification.evt.created

Type Event

WebPortal.notification.evt.created

Description This event is triggered when a webportal notification is successfully created using WebPortal.notification.new. Check out the dedicated tutorial.
Type event message.
Output Data Type Description
type String WebPortal.notification.evt.created
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 is created
      case "WebPortal.notification.evt.created":
        console.log("[WebPortal Notification] The WebPortal notification has been created.");
        console.log("[WebPortal Notification] ID:" + data.notifId +);
        break;

    }
  }
});

See Also